projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82f8db2
)
Fixed compiler warning in Squirrel
author
Ingo Ruhnke
<grumbel@gmail.com>
Thu, 14 Aug 2014 00:43:26 +0000
(
02:43
+0200)
committer
Ingo Ruhnke
<grumbel@gmail.com>
Thu, 14 Aug 2014 00:43:26 +0000
(
02:43
+0200)
external/squirrel/squirrel/sqcompiler.cpp
patch
|
blob
|
history
diff --git
a/external/squirrel/squirrel/sqcompiler.cpp
b/external/squirrel/squirrel/sqcompiler.cpp
index
1f8a20c
..
fbd2993
100644
(file)
--- a/
external/squirrel/squirrel/sqcompiler.cpp
+++ b/
external/squirrel/squirrel/sqcompiler.cpp
@@
-80,7
+80,7
@@
public:
_lineinfo = lineinfo;_raiseerror = raiseerror;
\r
_scope.outers = 0;
\r
_scope.stacksize = 0;
\r
- _compilererror[0] =
NULL
;
\r
+ _compilererror[0] =
'\0'
;
\r
}
\r
static void ThrowError(void *ud, const SQChar *s) {
\r
SQCompiler *c = (SQCompiler *)ud;
\r