diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-18 12:33:05 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-18 19:26:21 -0500 |
commit | 447021aafdf4bd0c0f70a3078d35a8f00ada4504 (patch) | |
tree | 3a0ac085595cc6d95dab2421efd0be80f27d9ad5 /src/shared/condition.h | |
parent | f1acf85a36f4c32d69511fe1bfa12f66e28fa80d (diff) |
tree-wide: make condition_free_list return NULL
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); |