From 1bca766a5d57ac02337a3c41c7872ac83e3d27e4 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 25 May 1995 05:09:50 +0000 Subject: [PATCH] [struct control]: Change type of `repeat' member to unsigned long to avoid conversion warning. --- src/csplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csplit.c b/src/csplit.c index 8a6c65d941..f75cbd2183 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -73,7 +73,7 @@ struct control struct re_pattern_buffer re_compiled; /* Compiled regular expression. */ int offset; /* Offset from regexp to split at. */ int lines_required; /* Number of lines required. */ - int repeat; /* Repeat count. */ + unsigned int repeat; /* Repeat count. */ int repeat_forever; /* Non-zero if `*' used as a repeat count. */ int argnum; /* ARGV index. */ boolean ignore; /* If true, produce no output (for regexp). */ -- 2.47.3