diff options
Diffstat (limited to 'LuaSL/src')
-rw-r--r-- | LuaSL/src/LuaSL_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index 5f5389b..26efbd7 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c | |||
@@ -1775,7 +1775,7 @@ static boolean doneParsing(LuaSL_compiler *compiler) | |||
1775 | strcat(diffName, ".diff"); | 1775 | strcat(diffName, ".diff"); |
1776 | outputLeaf(out, OM_LSL, compiler->ast); | 1776 | outputLeaf(out, OM_LSL, compiler->ast); |
1777 | fclose(out); | 1777 | fclose(out); |
1778 | sprintf(buffer, "diff -u \"%s\" \"%s\" > \"%s\"", compiler->fileName, outName, diffName); | 1778 | sprintf(buffer, "diff -wu \"%s\" \"%s\" > \"%s\"", compiler->fileName, outName, diffName); |
1779 | count = system(buffer); | 1779 | count = system(buffer); |
1780 | if (0 != count) | 1780 | if (0 != count) |
1781 | PE("LSL output file is different - %s!", outName); | 1781 | PE("LSL output file is different - %s!", outName); |