From: Jim Meyering Date: Sat, 1 Jul 2000 15:41:01 +0000 (+0000) Subject: Change type of global, field_1_bufsize, from int to size_t. X-Git-Tag: TEXTUTILS-2_0f~17 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1237bc6c72d25625c06af4ef2b04d6bc9b1b5b33;p=thirdparty%2Fcoreutils.git Change type of global, field_1_bufsize, from int to size_t. --- diff --git a/src/cut.c b/src/cut.c index 0569619534..c385962e54 100644 --- a/src/cut.c +++ b/src/cut.c @@ -116,7 +116,7 @@ struct range_pair static char *field_1_buffer; /* The number of bytes allocated for FIELD_1_BUFFER. */ -static int field_1_bufsize; +static size_t field_1_bufsize; /* The largest field or byte index used as an endpoint of a closed or degenerate range specification; this doesn't include the starting