mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Add a missing argument to an error message format string.
This commit is contained in:
parent
5819ab3f12
commit
c3b1df1293
1 changed files with 1 additions and 1 deletions
|
|
@ -348,7 +348,7 @@ main(argc, argv)
|
|||
else if (strcmp(optarg, "time") == 0)
|
||||
opt = FS_OPTTIME;
|
||||
else
|
||||
fatal("%s: unknown optimization preference: use `space' or `time'");
|
||||
fatal("%s: unknown optimization preference: use `space' or `time'", optarg);
|
||||
}
|
||||
break;
|
||||
case 'p':
|
||||
|
|
|
|||
Loading…
Reference in a new issue