mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Remove blanks before \n in output strings
Those blanks violate the coding conventions, see scripts/checkpatch.pl. Blanks missing after colons in the changed lines were added. This patch does not try to fix tabs, long lines and other problems in the changed lines, therefore checkpatch.pl reports many violations. Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
937b1258b7
commit
b2bedb2144
16 changed files with 41 additions and 41 deletions
|
@ -1504,7 +1504,7 @@ static abi_long do_setsockopt(int sockfd, int level, int optname,
|
|||
break;
|
||||
default:
|
||||
unimplemented:
|
||||
gemu_log("Unsupported setsockopt level=%d optname=%d \n", level, optname);
|
||||
gemu_log("Unsupported setsockopt level=%d optname=%d\n", level, optname);
|
||||
ret = -TARGET_ENOPROTOOPT;
|
||||
}
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue