diff options
Diffstat (limited to 'tccpp.c')
| -rw-r--r-- | tccpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1741,7 +1741,7 @@ pack_error: if(def->off >= def->size){ int size = def->size; size *= 2; - if (size >= MACRO_STACK_SIZE) + if (size > MACRO_STACK_SIZE) tcc_error("stack full"); def->data = tcc_realloc(def->data, size*sizeof(Sym*)); def->size = size; |
