From 682d83503bf54b9bd5f84778efc17f4e5cde350f Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Wed, 5 Jun 2002 15:03:15 +0000 Subject: 17292: shut up compiler if no OPEN_MEMSTREAM --- Src/builtin.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Src') diff --git a/Src/builtin.c b/Src/builtin.c index 18e95da24..90681fc3a 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -2914,7 +2914,10 @@ bin_print(char *name, char **args, char *ops, int func) int flags[5], *len; char *start, *endptr, *c, *d, *flag, *buf, spec[11], *fmt = NULL; char **first, *curarg, *flagch = "0+- #", save = '\0', nullstr = '\0'; - size_t rcount, mcount, count = 0; + size_t rcount, count = 0; +#ifdef HAVE_OPEN_MEMSTREAM + size_t mcount; +#endif FILE *fout = stdout; Histent ent; -- cgit 1.4.1