summaryrefslogtreecommitdiff
path: root/src/pr.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-12-20 16:44:12 +0000
committerJim Meyering <jim@meyering.net>2003-12-20 16:44:12 +0000
commit6ff0bf52e20f22f7207ea042e81f83d8a32fdc69 (patch)
tree2ad82583a638baa91076e878b1b10120cd208749 /src/pr.c
parent18c313d5638f29fa2b3288a096b5323795f1af72 (diff)
downloadcoreutils-6ff0bf52e20f22f7207ea042e81f83d8a32fdc69.tar.xz
Change type of global, buff_allocated, to size_t.
Diffstat (limited to 'src/pr.c')
-rw-r--r--src/pr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pr.c b/src/pr.c
index 8ae0011af..04aa1c887 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -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.