aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/grep/grep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/grep/grep.h')
-rw-r--r--src/cmd/grep/grep.h4
1 files changed, 2 insertions, 2 deletions
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;