summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2003-10-07 19:41:32 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2003-10-07 19:41:32 +0000
commit5aad846d0e33bb5acfbe0f803decfe15a7878802 (patch)
treef9b0ee3ff886e7b1bc908db49338e44777b813cc /usr.bin
parent337d6cfd9eb07eb6d42a17757bf3063945804bef (diff)
oopsie.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/lex/flex.14
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/lex/flex.1 b/usr.bin/lex/flex.1
index 23ef0049798..50171ea422a 100644
--- a/usr.bin/lex/flex.1
+++ b/usr.bin/lex/flex.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: flex.1,v 1.14 2003/10/07 19:40:26 tedu Exp $
+.\" $OpenBSD: flex.1,v 1.15 2003/10/07 19:41:31 tedu Exp $
.\"
.\" Copyright (c) 1990 The Regents of the University of California.
.\" All rights reserved.
@@ -931,7 +931,7 @@ to be rescanned enclosed in parentheses.
char *yycopy;
/* Copy yytext because unput() trashes yytext */
- if ((yycopy = strdup( yytext )) == NULL);
+ if ((yycopy = strdup( yytext )) == NULL)
err(1, NULL);
unput( ')' );
for ( i = yyleng - 1; i >= 0; --i )