summaryrefslogtreecommitdiff
path: root/src/csplit.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-05-25 05:09:50 +0000
committerJim Meyering <jim@meyering.net>1995-05-25 05:09:50 +0000
commit1bca766a5d57ac02337a3c41c7872ac83e3d27e4 (patch)
tree7f95c2b82c5a0f25e1ee26d737147834e38e9b23 /src/csplit.c
parenta660862d4ca44ef3bb86a0dabf7402ba7a2922bc (diff)
downloadcoreutils-1bca766a5d57ac02337a3c41c7872ac83e3d27e4.tar.xz
[struct control]: Change type of `repeat' member to unsigned
long to avoid conversion warning.
Diffstat (limited to 'src/csplit.c')
-rw-r--r--src/csplit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csplit.c b/src/csplit.c
index 8a6c65d94..f75cbd218 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). */