diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-01-19 16:12:05 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-01-19 16:12:05 +0000 |
commit | c585ffdfe1209a05296db7b67184b267c81d9321 (patch) | |
tree | 7c6a12fa06803e01278cc5e8bc0b1072431c556e /usr.bin/grep/grep.h | |
parent | 8f42c813a0defdb15100ea4e5113186d80390544 (diff) |
Use off_t for file sizes, and don't forget to print a ':' when using
the -b option.
ok millert@
Diffstat (limited to 'usr.bin/grep/grep.h')
-rw-r--r-- | usr.bin/grep/grep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/grep/grep.h b/usr.bin/grep/grep.h index 8163bf0627c..1d886d57c20 100644 --- a/usr.bin/grep/grep.h +++ b/usr.bin/grep/grep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: grep.h,v 1.8 2003/07/02 21:04:10 deraadt Exp $ */ +/* $OpenBSD: grep.h,v 1.9 2004/01/19 16:12:04 otto Exp $ */ /*- * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav @@ -43,7 +43,7 @@ typedef struct { size_t len; int line_no; - int off; + off_t off; char *file; char *dat; } str_t; |