From 7c07f91e1c944ea9659a069fa67a3d7246517c13 Mon Sep 17 00:00:00 2001 From: sater Date: Tue, 20 Nov 1984 10:22:12 +0000 Subject: [PATCH] The constant 512 slipped in instead of BUFSIZ. Changed. --- mach/proto/cg/gencode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach/proto/cg/gencode.c b/mach/proto/cg/gencode.c index ea1ccbe5c..6fc93d497 100644 --- a/mach/proto/cg/gencode.c +++ b/mach/proto/cg/gencode.c @@ -35,7 +35,7 @@ FILE *codefile; out_init(filename) char *filename; { #ifndef NDEBUG - static char stderrbuff[512]; + static char stderrbuff[BUFSIZ]; if (Debug) { codefile = stderr; -- 2.34.1