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 | |
parent | f1acf85a36f4c32d69511fe1bfa12f66e28fa80d (diff) |
tree-wide: make condition_free_list return NULL
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/condition.c | 4 | ||||
-rw-r--r-- | src/shared/condition.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/shared/condition.c b/src/shared/condition.c index dcbf9a7e86..3a3452959d 100644 --- a/src/shared/condition.c +++ b/src/shared/condition.c @@ -73,11 +73,13 @@ void condition_free(Condition *c) { free(c); } -void condition_free_list(Condition *first) { +Condition* condition_free_list(Condition *first) { Condition *c, *n; LIST_FOREACH_SAFE(conditions, c, n, first) condition_free(c); + + return NULL; } static int condition_test_kernel_command_line(Condition *c) { 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); |