From 0d1ba34494e5e5e21e205f2e86349afeb69ca84d Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Tue, 16 Nov 2010 00:31:05 +0000 Subject: maint: fix a new -Wpointer-sign gcc warning * src/csplit.c (max_out): Fix a new warning introduced with commit 6568b173, 2010-11-10, "csplit: do not rely on..." --- src/csplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/csplit.c b/src/csplit.c index 531e492ed..07c5c8c57 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -1275,7 +1275,7 @@ max_out (char *format) error (EXIT_FAILURE, 0, _("too many %% conversion specifications in suffix")); percent = true; - unsigned int flags; + int flags; f += get_format_flags (f, &flags); while (ISDIGIT (*f)) f++; -- cgit v1.2.3-54-g00ecf