summaryrefslogtreecommitdiff
path: root/omapip/errwarn.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-09-01 23:17:00 +0000
committerTed Lemon <source@isc.org>2000-09-01 23:17:00 +0000
commit60e0a4f9b6289ce36c9648766d43b9321a76538b (patch)
tree4b0e97df5988f30218103442c26c3b5c58bf1b69 /omapip/errwarn.c
parentaf380050fcc2686539da53e2c39941b13e30571a (diff)
downloadisc-dhcp-60e0a4f9b6289ce36c9648766d43b9321a76538b.tar.gz
Work around a pedantic warning about empty format strings.
Diffstat (limited to 'omapip/errwarn.c')
-rw-r--r--omapip/errwarn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/omapip/errwarn.c b/omapip/errwarn.c
index 10130152..a0bfb5e0 100644
--- a/omapip/errwarn.c
+++ b/omapip/errwarn.c
@@ -42,7 +42,7 @@
#ifndef lint
static char copyright[] =
-"$Id: errwarn.c,v 1.6 2000/09/01 23:04:37 mellon Exp $ Copyright (c) 1996 The Internet Software Consortium. All rights reserved.\n";
+"$Id: errwarn.c,v 1.7 2000/09/01 23:17:00 mellon Exp $ Copyright (c) 1996 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include <omapip/omapip_p.h>
@@ -90,7 +90,7 @@ void log_fatal (const char * fmt, ... )
log_error ("If you intend to request help from the dhcp-server@isc.org");
log_error ("mailing list, please read the section on the README about");
log_error ("submitting bug reports and requests for help.");
- log_error ("");
+ log_error ("%s", "");
log_error ("exiting.");
#endif
if (log_cleanup)