From: ceriel Date: Mon, 2 Mar 1987 08:55:23 +0000 (+0000) Subject: maxchunk definition made static X-Git-Tag: release-5-5~4556 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=1e10c0cf981855a6010f06439552b1023729b6c5;p=ack.git maxchunk definition made static --- diff --git a/modules/src/object/rd_bytes.c b/modules/src/object/rd_bytes.c index 3c9822ffb..35272b168 100644 --- a/modules/src/object/rd_bytes.c +++ b/modules/src/object/rd_bytes.c @@ -4,7 +4,7 @@ an int! */ -int maxchunk = MAXCHUNK; +static int maxchunk = MAXCHUNK; /* * We don't have to worry about byte order here. diff --git a/modules/src/object/wr_bytes.c b/modules/src/object/wr_bytes.c index 55e8932e2..f7969b891 100644 --- a/modules/src/object/wr_bytes.c +++ b/modules/src/object/wr_bytes.c @@ -4,7 +4,7 @@ You have to put it in an int! */ -int maxchunk = MAXCHUNK; +static int maxchunk = MAXCHUNK; /* * Just write "cnt" bytes to file-descriptor "fd".