diff options
author | kris <kris@FreeBSD.org> | 2001-08-19 08:19:37 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-08-19 08:19:37 +0000 |
commit | 5e75b336b9d01ea2b70ff9f4098ca7e54f86975a (patch) | |
tree | c307dda030341761eafafb3d34259ed800c35e94 /usr.sbin | |
parent | 0bbccbf2dc9057e56f7233044f08c4b59f4f3e30 (diff) | |
download | FreeBSD-src-5e75b336b9d01ea2b70ff9f4098ca7e54f86975a.zip FreeBSD-src-5e75b336b9d01ea2b70ff9f4098ca7e54f86975a.tar.gz |
Silence non-constant format string warnings by marking functions
as __printflike()/__printf0like(), adding const, or adding missing "%s"
format strings, as appropriate.
MFC after: 2 weeks
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/mountd/mountd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/mountd/mountd.c b/usr.sbin/mountd/mountd.c index 2ca85f4..aab4479 100644 --- a/usr.sbin/mountd/mountd.c +++ b/usr.sbin/mountd/mountd.c @@ -245,7 +245,7 @@ int mountdlockfd; #ifdef DEBUG int debug = 1; -void SYSLOG __P((int, const char *, ...)); +void SYSLOG __P((int, const char *, ...)) __printflike(2, 3); #define syslog SYSLOG #else int debug = 0; |