diff options
author | Markus Armbruster <armbru@redhat.com> | 2016-08-03 13:37:54 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2016-08-08 09:01:27 +0200 |
commit | 7ea7d36e3493d4dac7f20e46d0ca499bbb3251a6 (patch) | |
tree | 3ac676af0de4d620c263fd52604b476c85735494 /hw/i386 | |
parent | fea1c0999a67217207ece63a25ed88c796c19515 (diff) | |
download | qemu-7ea7d36e3493d4dac7f20e46d0ca499bbb3251a6.zip |
error: Fix error_printf() calls lacking newlines
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <1470224274-31522-5-git-send-email-armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'hw/i386')
-rw-r--r-- | hw/i386/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 47593b741a..022dd1b205 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -381,7 +381,7 @@ ISADevice *pc_find_fdc0(void) error_report("warning: multiple floppy disk controllers with " "iobase=0x3f0 have been found"); error_printf("the one being picked for CMOS setup might not reflect " - "your intent"); + "your intent\n"); } return state.floppy; |