-name error message should have trailing newline
Bug #662461 reported by
John Morrissey
This bug affects 1 person
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| QEMU |
Fix Released
|
Undecided
|
Unassigned | ||
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)
- fprintf(stderr, "Unknown subargument %s to -name", p
+ fprintf(stderr, "Unknown subargument %s to -name\n",
To post a comment you must log in.

It looks like this change (or equivalent) was applied by Aurelien Jarno in 5697f6ae4183f3b 3320a1fe677e340 4a05e75783
Thanks for reporting it and providing the fix.