mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
put \n on some error messages
This commit is contained in:
parent
36ca7b55bd
commit
f753dd82ae
1 changed files with 2 additions and 2 deletions
|
@ -70,11 +70,11 @@ pack_open (const char *name)
|
|||
}
|
||||
if (Qread (pack->handle, &pack->header, sizeof (pack->header))
|
||||
!= sizeof (pack->header)) {
|
||||
fprintf (stderr, "%s: not a pack file", name);
|
||||
fprintf (stderr, "%s: not a pack file\n", name);
|
||||
goto error;
|
||||
}
|
||||
if (strncmp (pack->header.id, "PACK", 4)) {
|
||||
fprintf (stderr, "%s: not a pack file", name);
|
||||
fprintf (stderr, "%s: not a pack file\n", name);
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue