diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2023-10-16 06:24:38 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2023-10-16 06:24:38 (GMT) |
commit | 962a955dfd6788f619c492d8f954ff6f4322947a (patch) | |
tree | 421518aed7caeb21cc1af8ecc65d864d949cae18 /src/analysis | |
parent | ecc1db5226f6cd5fee2bb52da5fc0061b43ed0e7 (diff) |
Fix code in non debug mode.
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/scan/items/maxcommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/scan/items/maxcommon.c b/src/analysis/scan/items/maxcommon.c index a2e0f2a..2fe561f 100644 --- a/src/analysis/scan/items/maxcommon.c +++ b/src/analysis/scan/items/maxcommon.c @@ -293,7 +293,7 @@ static bool g_scan_maxcommon_function_run_call(GScanMaxcommonFunction *item, GSc #ifndef NDEBUG g_scan_expression_count_items(args[0], ctx, &arg0_count); #else - status = bool g_scan_expression_count_items(args[0], ctx, &arg0_count); + status = g_scan_expression_count_items(args[0], ctx, &arg0_count); assert(status); #endif |