mirror of https://github.com/odrling/Aegisub
Eliminate warnings in lpeg
This commit is contained in:
parent
6661c6a808
commit
0153987e02
|
@ -349,17 +349,6 @@ static void printpatt (Instruction *p) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void printcap (Capture *cap) {
|
|
||||||
printcapkind(cap->kind);
|
|
||||||
printf(" (idx: %d - size: %d) -> %p\n", cap->idx, cap->siz, cap->s);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void printcaplist (Capture *cap) {
|
|
||||||
for (; cap->s; cap++) printcap(cap);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* }====================================================== */
|
/* }====================================================== */
|
||||||
|
|
||||||
|
|
||||||
|
@ -446,7 +435,7 @@ static const char *match (lua_State *L,
|
||||||
lua_pushlightuserdata(L, stackbase);
|
lua_pushlightuserdata(L, stackbase);
|
||||||
for (;;) {
|
for (;;) {
|
||||||
#if defined(DEBUG)
|
#if defined(DEBUG)
|
||||||
printf("s: |%s| stck: %d c: %d ",
|
printf("s: |%s| stck: %ld c: %d ",
|
||||||
s, stack - getstackbase(L, ptop), captop);
|
s, stack - getstackbase(L, ptop), captop);
|
||||||
printinst(op, p);
|
printinst(op, p);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue