diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2023-10-22 12:36:33 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2023-10-22 12:36:33 (GMT) |
commit | f044b0444d72e04f0ec65db8ea192043af2a7998 (patch) | |
tree | a9d7206d2ed5253e560818efaaebc358bb1da70c /src | |
parent | 98dab5148243637a4f2d19a7c44b0e643a0e0f8c (diff) |
Expect only one argument for the not operator, even in debug mode.
Diffstat (limited to 'src')
-rw-r--r-- | src/analysis/scan/exprs/logical.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/scan/exprs/logical.c b/src/analysis/scan/exprs/logical.c index c61a44c..3b07843 100644 --- a/src/analysis/scan/exprs/logical.c +++ b/src/analysis/scan/exprs/logical.c @@ -230,7 +230,7 @@ bool g_scan_logical_operation_create(GScanLogicalOperation *op, BooleanOperation g_object_ref(G_OBJECT(op->first)); result = (second == NULL); - assert(second != NULL); + assert(second == NULL); break; default: |