diff options
Diffstat (limited to 'test/exit6.lm')
-rw-r--r-- | test/exit6.lm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/exit6.lm b/test/exit6.lm index a87f4383..5e20118a 100644 --- a/test/exit6.lm +++ b/test/exit6.lm @@ -664,13 +664,13 @@ OutputFile: str = '/dev/stdout' InputFile: str = '/dev/stdin' Lang: str = 'c' -Input: stream = open( InputFile "r" ) -Output: stream = open( OutputFile "w" ) +Input: stream = open( InputFile, "r" ) +Output: stream = open( OutputFile, "w" ) RagelTree: start = parse start[ Input ] if ( !RagelTree ) { - print( error '\n' ) + print( error, '\n' ) exit(1) } |