From b88b21c0d0929483ebdf40420df37883ca4f7a3f Mon Sep 17 00:00:00 2001 From: bde Date: Sat, 17 Oct 1998 16:04:28 +0000 Subject: Fixed printf format errors. --- contrib/sendmail/src/err.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/sendmail/src/err.c') diff --git a/contrib/sendmail/src/err.c b/contrib/sendmail/src/err.c index 0661395..a07d62d 100644 --- a/contrib/sendmail/src/err.c +++ b/contrib/sendmail/src/err.c @@ -216,7 +216,7 @@ usrerr(fmt, va_alist) char buf[MAXLINE]; snprintf(buf, sizeof buf, "Postmaster warning: %.*s", - sizeof buf - 22, MsgBuf + 4); + (int)sizeof buf - 22, MsgBuf + 4); CurEnv->e_message = newstr(buf); } else -- cgit v1.1