summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 )