From b6a4a3970513bedf70b1e9cb8133b01f94de4155 Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Sun, 30 May 1993 16:23:46 -0400 Subject: [PATCH] INT_STRLEN_MAXIMUM work SCCS-file: strftime.c SCCS-SID: 7.14 --- strftime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strftime.c b/strftime.c index 5b3ca89..868d799 100644 --- a/strftime.c +++ b/strftime.c @@ -342,7 +342,7 @@ _conv(n, format, pt, ptlim) char *pt; const char *ptlim; { - char buf[INT_STRLEN_MAXIMUM + 1]; + char buf[INT_STRLEN_MAXIMUM(int) + 1]; (void) sprintf(buf, format, n); return _add(buf, pt, ptlim);