mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
error: Strip trailing '\n' from error string arguments (again)
Commit9af9e0f
,6daf194d
,be62a2eb
and312fd5f
got rid of a bunch, but they keep coming back. checkpatch.pl tries to flag them since commit5d596c2
, but it's not very good at it. Offenders tracked down with Coccinelle script scripts/coccinelle/err-bad-newline.cocci, an updated version of the script from commit312fd5f
. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1470224274-31522-2-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
51009170d8
commit
df3c286c53
7 changed files with 39 additions and 10 deletions
|
@ -1197,8 +1197,8 @@ static void slirp_socket_save(QEMUFile *f, struct socket *so)
|
|||
qemu_put_be16(f, so->so_fport);
|
||||
break;
|
||||
default:
|
||||
error_report(
|
||||
"so_ffamily unknown, unable to save so_faddr and so_fport\n");
|
||||
error_report("so_ffamily unknown, unable to save so_faddr and"
|
||||
" so_fport");
|
||||
}
|
||||
qemu_put_be16(f, so->so_lfamily);
|
||||
switch (so->so_lfamily) {
|
||||
|
@ -1207,8 +1207,8 @@ static void slirp_socket_save(QEMUFile *f, struct socket *so)
|
|||
qemu_put_be16(f, so->so_lport);
|
||||
break;
|
||||
default:
|
||||
error_report(
|
||||
"so_ffamily unknown, unable to save so_laddr and so_lport\n");
|
||||
error_report("so_ffamily unknown, unable to save so_laddr and"
|
||||
" so_lport");
|
||||
}
|
||||
qemu_put_byte(f, so->so_iptos);
|
||||
qemu_put_byte(f, so->so_emu);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue