diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2001-07-05 08:01:15 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2001-07-05 08:01:15 +0000 |
| commit | f261aeb7dec1e5cf4f3c84ce856bf93cbefb0352 (patch) | |
| tree | 619cf450d37c4ddda4f9f57f313db17ccb1fd9c7 /pw/pw.c | |
| parent | e5f1fcc0b64d23603afdc38a0aaf64904baba212 (diff) | |
| download | pw-darwin-f261aeb7dec1e5cf4f3c84ce856bf93cbefb0352.tar.gz pw-darwin-f261aeb7dec1e5cf4f3c84ce856bf93cbefb0352.zip | |
Fix a harmless format string bogon and mark a function as __printflike().
There is still one instance of non-constant format string use inside that
function, but it's hard to fix.
MFC after: 1 week
Diffstat (limited to 'pw/pw.c')
| -rw-r--r-- | pw/pw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -422,7 +422,7 @@ cmdhelp(int mode, int which) } }; - fprintf(stderr, help[which][mode]); + fprintf(stderr, "%s", help[which][mode]); } exit(EXIT_FAILURE); } |
