Add a missing argument to an error message format string.

This commit is contained in:
Kris Kennaway 2001-04-17 07:21:48 +00:00
parent 5819ab3f12
commit c3b1df1293
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=75574

View File

@ -348,7 +348,7 @@ main(argc, argv)
else if (strcmp(optarg, "time") == 0) else if (strcmp(optarg, "time") == 0)
opt = FS_OPTTIME; opt = FS_OPTTIME;
else else
fatal("%s: unknown optimization preference: use `space' or `time'"); fatal("%s: unknown optimization preference: use `space' or `time'", optarg);
} }
break; break;
case 'p': case 'p':