From: Jim Meyering Date: Thu, 25 May 1995 05:09:50 +0000 (+0000) Subject: [struct control]: Change type of `repeat' member to unsigned X-Git-Tag: textutils-1_12_1~148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1bca766a5d57ac02337a3c41c7872ac83e3d27e4;p=thirdparty%2Fcoreutils.git [struct control]: Change type of `repeat' member to unsigned long to avoid conversion warning. --- 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). */