From 1a84af59e08c39200775a68b6af7175a6bcd044e Mon Sep 17 00:00:00 2001 From: rsc Date: Thu, 25 Mar 2004 23:25:45 +0000 Subject: Guess what? More anonymous unions! --- src/cmd/grep/grep.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cmd/grep/grep.h') diff --git a/src/cmd/grep/grep.h b/src/cmd/grep/grep.h index c90be405..777bd1e8 100644 --- a/src/cmd/grep/grep.h +++ b/src/cmd/grep/grep.h @@ -76,12 +76,12 @@ EXTERN union * if a line requires multiple reads, we keep shifting * buf down into pre and then do another read into * buf. so you'll get the last 16-32k of the matching line. - * if pre were smaller than buf you'd get a suffix of the + * if h were smaller than buf you'd get a suffix of the * line with a hole cut out. */ uchar pre[16*1024]; /* to save to previous '\n' */ uchar buf[16*1024]; /* input buffer */ - }; + } u; } u; EXTERN char *filename; -- cgit v1.2.3