diff options
Diffstat (limited to 'src/shared/condition.h')
-rw-r--r-- | src/shared/condition.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/condition.h b/src/shared/condition.h index 28d1d94ff4..0780e78123 100644 --- a/src/shared/condition.h +++ b/src/shared/condition.h @@ -79,7 +79,7 @@ typedef struct Condition { Condition* condition_new(ConditionType type, const char *parameter, bool trigger, bool negate); void condition_free(Condition *c); -void condition_free_list(Condition *c); +Condition* condition_free_list(Condition *c); int condition_test(Condition *c); |