Skip to content

Commit 54484e2

Browse files
author
Mike Pall
committed
Minor fixes.
1 parent 94d0b53 commit 54484e2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/lib_base.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ LJLIB_CF(print)
503503
tv = L->top-1;
504504
}
505505
shortcut = (tvisfunc(tv) && funcV(tv)->c.ffid == FF_tostring)
506-
&& !gcrefu(basemt_it(G(L), LJ_TNUMX));
506+
&& !gcrefu(basemt_it(G(L), LJ_TNUMX));
507507
for (i = 0; i < nargs; i++) {
508508
cTValue *o = &L->base[i];
509509
const char *str;

src/lj_gc.c

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "lj_cdata.h"
2626
#endif
2727
#include "lj_trace.h"
28+
#include "lj_dispatch.h"
2829
#include "lj_vm.h"
2930

3031
#define GCSTEPSIZE 1024u

0 commit comments

Comments
 (0)