Fix a missing trailing newline

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
Aurelien Jarno 2010-12-27 18:29:20 +01:00
parent 4cdc1cd137
commit 5697f6ae41
1 changed files with 1 additions and 1 deletions

2
vl.c
View File

@ -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;