diff options
Diffstat (limited to 'usr.sbin/ctm/ctm_rmail/error.c')
-rw-r--r-- | usr.sbin/ctm/ctm_rmail/error.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/ctm/ctm_rmail/error.c b/usr.sbin/ctm/ctm_rmail/error.c index 724b117..56d3dc6 100644 --- a/usr.sbin/ctm/ctm_rmail/error.c +++ b/usr.sbin/ctm/ctm_rmail/error.c @@ -12,6 +12,11 @@ * Maybe you should write some free software too. */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* not lint */ + #include <stdio.h> #include <string.h> #include <stdarg.h> @@ -58,7 +63,7 @@ err_prog_name(char *name) * decoded and appended. */ void -err(char *fmt, ...) +err(const char *fmt, ...) { va_list ap; time_t now; |