]> Git Repo - qemu.git/commit
chardev: Use goto/label instead of do/break/while(0)
authorEric Blake <[email protected]>
Fri, 1 Dec 2017 23:24:29 +0000 (17:24 -0600)
committerPaolo Bonzini <[email protected]>
Tue, 16 Jan 2018 13:54:51 +0000 (14:54 +0100)
commit19a4d43ef05e323f811cf944980639449dbb39ac
tree9219d62bda5843d105034e8b3b15878ddcc43cf5
parent94f5c480e9b5ce95394026b3f025816470e23eaf
chardev: Use goto/label instead of do/break/while(0)

Use of a do/while(0) control flow in order to permit an early break
is an unusual paradigm, and triggers a false positive with a planned
future syntax check against 'while (0);'.  Rewrite the code to use a
goto instead.  This patch temporarily keeps an extra level of
indentation to highlight the change; the next patch cleans it up.

Signed-off-by: Eric Blake <[email protected]>
Message-Id: <20171201232433[email protected]>
Reviewed-by: Marc-AndrĂ© Lureau <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
chardev/char-serial.c
This page took 0.025217 seconds and 4 git commands to generate.