diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-11-09 20:13:59 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-11-09 20:13:59 +0000 |
commit | 60ddec86b1c51bd19cc8ff36709039a79f6feef3 (patch) | |
tree | 7d3e6213bde1ff868d674bf18ae492c68917bdfa /usr.bin/pr/egetopt.c | |
parent | 6ba2859ff51745038306c59d4fe9eefe6f164aff (diff) |
Typos in comments from Jared Yanovich <jjy2+ at pitt dot edu>
Diffstat (limited to 'usr.bin/pr/egetopt.c')
-rw-r--r-- | usr.bin/pr/egetopt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pr/egetopt.c b/usr.bin/pr/egetopt.c index e3b8d271a54..ce831fac12a 100644 --- a/usr.bin/pr/egetopt.c +++ b/usr.bin/pr/egetopt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: egetopt.c,v 1.6 2003/06/12 20:58:10 deraadt Exp $ */ +/* $OpenBSD: egetopt.c,v 1.7 2003/11/09 20:13:57 otto Exp $ */ /*- * Copyright (c) 1991 Keith Muller. @@ -35,7 +35,7 @@ #ifndef lint /* from: static char sccsid[] = "@(#)egetopt.c 8.1 (Berkeley) 6/6/93"; */ -static char *rcsid = "$OpenBSD: egetopt.c,v 1.6 2003/06/12 20:58:10 deraadt Exp $"; +static char *rcsid = "$OpenBSD: egetopt.c,v 1.7 2003/11/09 20:13:57 otto Exp $"; #endif /* not lint */ #include <ctype.h> @@ -70,7 +70,7 @@ egetopt(int nargc, char * const *nargv, const char *ostr) { static char *place = EMSG; /* option letter processing */ char *oli; /* option letter list index */ - static int delim; /* which option delimeter */ + static int delim; /* which option delimiter */ char *p; static char savec = '\0'; |