diff options
| author | Gonglei | 2015-02-25 05:22:37 +0100 |
|---|---|---|
| committer | Michael Tokarev | 2015-03-10 06:15:33 +0100 |
| commit | c65476612aa4842785939fa3fbea2123cc980c75 (patch) | |
| tree | 8d4dcf2236d20c1f2ae89b48d0fe86ce53cc3590 /net | |
| parent | arm/digic_boards: Remove superfluous '\n' around error_report() (diff) | |
| download | qemu-c65476612aa4842785939fa3fbea2123cc980c75.tar.gz qemu-c65476612aa4842785939fa3fbea2123cc980c75.tar.xz qemu-c65476612aa4842785939fa3fbea2123cc980c75.zip | |
vhost: Remove superfluous '\n' around error_report()
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'net')
| -rw-r--r-- | net/vhost-user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/vhost-user.c b/net/vhost-user.c index 2435b0f826..1d86a2be11 100644 --- a/net/vhost-user.c +++ b/net/vhost-user.c @@ -121,12 +121,12 @@ static void net_vhost_user_event(void *opaque, int event) case CHR_EVENT_OPENED: vhost_user_start(s); net_vhost_link_down(s, false); - error_report("chardev \"%s\" went up\n", s->chr->label); + error_report("chardev \"%s\" went up", s->chr->label); break; case CHR_EVENT_CLOSED: net_vhost_link_down(s, true); vhost_user_stop(s); - error_report("chardev \"%s\" went down\n", s->chr->label); + error_report("chardev \"%s\" went down", s->chr->label); break; } } |
