diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2010-12-27 18:29:20 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-12-27 18:29:20 +0100 |
commit | 5697f6ae4183f3b3320a1fe677e3404a05e75783 (patch) | |
tree | 9e01675b5c3eebd57277ae901211c086856bb11f /vl.c | |
parent | 4cdc1cd137e0b98766916a7cdf2d5a9b3c6632fa (diff) | |
download | qemu-5697f6ae4183f3b3320a1fe677e3404a05e75783.zip |
Fix a missing trailing newline
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2603,7 +2603,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", p); exit(1); } p += 8; |