Skip to content
Snippets Groups Projects
Commit 35f36e1b authored by Alam Ed Arias's avatar Alam Ed Arias
Browse files

travis-ci: set v of nulK to 0

parent a1d246a3
No related branches found
No related tags found
No related merge requests found
......@@ -270,6 +270,7 @@ static int boolK (FuncState *fs, int b) {
static int nilK (FuncState *fs) {
TValue k, v;
setbvalue(&v, 0);
setnilvalue(&v);
/* cannot use nil as key; instead use table itself to represent nil */
sethvalue(fs->L, &k, fs->h);
......
......@@ -245,7 +245,7 @@ int main(int argc, char **argv)
#endif
// return to OS
#if !defined (__GNUC__) || (__GNUC__ < 3)
#if !defined (__GNUC__)
return 0;
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment