From 1e10c0cf981855a6010f06439552b1023729b6c5 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 2 Mar 1987 08:55:23 +0000 Subject: [PATCH] maxchunk definition made static --- modules/src/object/rd_bytes.c | 2 +- modules/src/object/wr_bytes.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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". -- 2.34.1