It looks like this change (or equivalent) was applied by Aurelien Jarno in 5697f6ae4183f3b3320a1fe677e3404a05e75783
Thanks for reporting it and providing the fix. ** Changed in: qemu Status: New => Fix Committed -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/662461 Title: -name error message should have trailing newline Status in QEMU: Fix Committed Bug description: Trivial, but it was triggering the OCD. diff --git a/vl.c b/vl.c index df414ef..9c76a55 100644 --- a/vl.c +++ b/vl.c @@ -2524,7 +2524,7 @@ int main(int argc, char **argv, char **envp) if (p != NULL) { *p++ = 0; if (strncmp(p, "process=", 8)) { - fprintf(stderr, "Unknown subargument %s to -name", p + fprintf(stderr, "Unknown subargument %s to -name\n", exit(1); } p += 8;