diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-22 16:42:59 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-22 16:42:59 +0000 |
commit | bf8f55c721dcdbe06555f5a752d3989f680d9242 (patch) | |
tree | 128e705de0c7d50bed773a5ff02147a5dbd8c156 /usr.bin/diff | |
parent | 9797b4fe66f9194b818bbde7361c8c85bf460488 (diff) |
Add missing terminator to long options list.
Diffstat (limited to 'usr.bin/diff')
-rw-r--r-- | usr.bin/diff/diff.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/diff/diff.c b/usr.bin/diff/diff.c index 5e94598900e..b671ec3892e 100644 --- a/usr.bin/diff/diff.c +++ b/usr.bin/diff/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.33 2003/07/22 01:16:01 millert Exp $ */ +/* $OpenBSD: diff.c,v 1.34 2003/07/22 16:42:58 millert Exp $ */ /* * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -21,7 +21,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: diff.c,v 1.33 2003/07/22 01:16:01 millert Exp $"; +static const char rcsid[] = "$OpenBSD: diff.c,v 1.34 2003/07/22 16:42:58 millert Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -70,6 +70,7 @@ static struct option longopts[] = { { "ignore-all-space", no_argument, 0, 'w' }, { "exclude", required_argument, 0, 'x' }, { "exclude-from", required_argument, 0, 'X' }, + { NULL, 0, 0, '\0'} }; __dead void usage(void); |