mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
update test verbosity checks for the new default verbosity
This commit is contained in:
parent
bfd02b6412
commit
01c375c7db
1 changed files with 2 additions and 2 deletions
|
@ -186,9 +186,9 @@ main (int argc, char **argv)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
for (i = 0; i < pack->numfiles; i++) {
|
for (i = 0; i < pack->numfiles; i++) {
|
||||||
if (options.verbosity > 1)
|
if (options.verbosity >= 1)
|
||||||
printf ("%6d ", pack->files[i].filelen);
|
printf ("%6d ", pack->files[i].filelen);
|
||||||
if (options.verbosity > 0)
|
if (options.verbosity >= 0)
|
||||||
printf ("%s\n", pack->files[i].name);
|
printf ("%s\n", pack->files[i].name);
|
||||||
}
|
}
|
||||||
pack_close (pack);
|
pack_close (pack);
|
||||||
|
|
Loading…
Reference in a new issue