diff options
author | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-16 20:30:26 +0000 |
---|---|---|
committer | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-16 20:30:26 +0000 |
commit | 8a1e32e6a8c441f8358bd580c655d5ff48716fa0 (patch) | |
tree | 916964771773b144ba5a4ec7e61ac22860122e99 /builtins.c | |
parent | c8867502df27f516b0d46b1a254f0da572bdadb6 (diff) |
Handle -d option in prolog
Diffstat (limited to 'builtins.c')
-rw-r--r-- | builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1418,7 +1418,7 @@ builtincollectgarbage(Term *goal, Binding **bindings, Module *module) USED(bindings); USED(module); vlong amount = collectgarbage(); - if(amount != 0 & debug) + if(amount != 0 & flagdebug) print("Collected %lld bytes of garbage\n", amount); return 1; }
\ No newline at end of file |