summaryrefslogtreecommitdiff
path: root/bin/systrace/lex.l
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-04 19:15:55 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-04 19:15:55 +0000
commit30ea024923ba650bdffbc84efb645461059fb038 (patch)
tree22a49747f9214bea78955875511189dbd725a950 /bin/systrace/lex.l
parentbcd109d0e846e759b204588f696c9d03455f43c5 (diff)
KNF
Diffstat (limited to 'bin/systrace/lex.l')
-rw-r--r--bin/systrace/lex.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/systrace/lex.l b/bin/systrace/lex.l
index 24c45efe68f..b8828f615dc 100644
--- a/bin/systrace/lex.l
+++ b/bin/systrace/lex.l
@@ -90,11 +90,11 @@ true { return TRUE; }
return CMDSTRING; }
\[ { return LSQBRACE; }
\] { return RSQBRACE; }
-\ { ; }
-\n { ;}
-\t { ; }
-"#".*\n { ; }
-. { yyerror("illegal token"); }
+\ { ; }
+\n { ; }
+\t { ; }
+"#".*\n { ; }
+. { yyerror("illegal token"); }
%%
#ifndef yywrap
int yywrap() { return 1; }