summaryrefslogtreecommitdiffstats
path: root/src/cmd/grep/grep.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-03-25 23:25:45 +0000
committerrsc <devnull@localhost>2004-03-25 23:25:45 +0000
commit1a84af59e08c39200775a68b6af7175a6bcd044e (patch)
tree1c727cf1d3892372d0fd39756e803abf74e904cf /src/cmd/grep/grep.h
parent285b4f85c0dff0aa5019ee93c17d1f8c734eb030 (diff)
downloadplan9port-1a84af59e08c39200775a68b6af7175a6bcd044e.tar.gz
plan9port-1a84af59e08c39200775a68b6af7175a6bcd044e.zip
Guess what? More anonymous unions!
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;