1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

Fix a format string nit.

This commit is contained in:
Kris Kennaway 2002-06-07 00:44:33 +00:00
parent 0e98c54c52
commit 2630a4429a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=60741

View File

@ -0,0 +1,11 @@
--- getopt.c.orig Thu Jun 6 17:43:00 2002
+++ getopt.c Thu Jun 6 17:43:12 2002
@@ -270,7 +270,7 @@
MUCHelp20,MUCHelp21,"\n"};
int I;
for (I=0;I<sizeof(Help)/sizeof(Help[0]);I++)
- mprintf(Help[I]);
+ mprintf("%s", Help[I]);
}