From 9dfcaf5c979776f1f2bd80f48c7e4ded57a37e07 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Wed, 24 Apr 2019 20:27:03 +0300 Subject: Fix a warning in msg.c. --- msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'msg.c') diff --git a/msg.c b/msg.c index ca988ad3..32f152ab 100644 --- a/msg.c +++ b/msg.c @@ -74,7 +74,7 @@ err(bool isfatal, const char *s, const char *emsg, va_list argp) else (void) fprintf(stderr, _("cmd. line:")); - (void) fprintf(stderr, "%d: ", sourceline + lineno_val); + (void) fprintf(stderr, "%ld: ", sourceline + lineno_val); } #ifdef HAVE_MPFR -- cgit v1.2.3