common/xyzModem.c: move empty statements to newline
To prevent a warning for clang the loop without a body is made more clear by moving it to a line of its own. This prevents a clang warning. cc: sbabic@denx.de Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
This commit is contained in:
parent
46f46fd48e
commit
e153b13c8e
@ -759,7 +759,8 @@ xyzModem_stream_terminate (bool abort, int (*getc) (void))
|
||||
* If we don't eat it now, RedBoot will think the user typed it.
|
||||
*/
|
||||
ZM_DEBUG (zm_dprintf ("Trailing gunk:\n"));
|
||||
while ((c = (*getc) ()) > -1);
|
||||
while ((c = (*getc) ()) > -1)
|
||||
;
|
||||
ZM_DEBUG (zm_dprintf ("\n"));
|
||||
/*
|
||||
* Make a small delay to give terminal programs like minicom
|
||||
|
Loading…
Reference in New Issue
Block a user