diff options
author | Jim Meyering <jim@meyering.net> | 2003-12-20 16:44:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-12-20 16:44:12 +0000 |
commit | 6ff0bf52e20f22f7207ea042e81f83d8a32fdc69 (patch) | |
tree | 2ad82583a638baa91076e878b1b10120cd208749 /src | |
parent | 18c313d5638f29fa2b3288a096b5323795f1af72 (diff) | |
download | coreutils-6ff0bf52e20f22f7207ea042e81f83d8a32fdc69.tar.xz |
Change type of global, buff_allocated, to size_t.
Diffstat (limited to 'src')
-rw-r--r-- | src/pr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -460,7 +460,7 @@ static int buff_current; /* The number of characters in buff. Used for allocation of buff and to detect overflow of buff. */ -static int buff_allocated; +static size_t buff_allocated; /* Array of indices into buff. Each entry is an index of the first character of a line. |