From c1e8822ae40c9472a9bde71ae5cdfad8f8b0f82e Mon Sep 17 00:00:00 2001 From: John Birrell Date: Sun, 25 Jan 1998 08:59:08 +0000 Subject: [PATCH] Cast a size_t to a long to avoid a gcc warning. --- bin/date/date.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/date/date.c b/bin/date/date.c index f5f7eada3f52..a66d53f2a54c 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: date.c,v 1.21 1997/10/03 12:49:28 danny Exp $ + * $Id: date.c,v 1.22 1997/12/11 02:38:56 brian Exp $ */ #ifndef lint @@ -187,9 +187,9 @@ setthetime(fmt, p) lt = localtime(&tval); return; } else if (*t != '\0') - fprintf(stderr, "Warning: Ignoring %d extraneous" + fprintf(stderr, "Warning: Ignoring %ld extraneous" " characters in date string (%s)\n", - strlen(t), t); + (long) strlen(t), t); } else { for (t = p, dot = NULL; *t; ++t) { if (isdigit(*t))