summaryrefslogtreecommitdiffstats
path: root/pw/pw.c
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2001-07-05 08:01:15 +0000
committerKris Kennaway <kris@FreeBSD.org>2001-07-05 08:01:15 +0000
commitb8c6c4c573523f5c6e59bb9bae4a961777c84fff (patch)
tree3bafff5aeef16cd9058ef40274c13d3eb26d9eb5 /pw/pw.c
parent51fe76f10b409bf02fabe8de1d63cd5c6c97e033 (diff)
downloadpw-darwin-b8c6c4c573523f5c6e59bb9bae4a961777c84fff.tar.gz
pw-darwin-b8c6c4c573523f5c6e59bb9bae4a961777c84fff.tar.zst
pw-darwin-b8c6c4c573523f5c6e59bb9bae4a961777c84fff.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pw/pw.c b/pw/pw.c
index a1f9d8c..b59b9f9 100644
--- a/pw/pw.c
+++ b/pw/pw.c
@@ -422,7 +422,7 @@ cmdhelp(int mode, int which)
}
};
- fprintf(stderr, help[which][mode]);
+ fprintf(stderr, "%s", help[which][mode]);
}
exit(EXIT_FAILURE);
}