This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch support/2.4 in repository https://gitbox.apache.org/repos/asf/celix.git
commit 9a96162ea0aa5f8a05eaed9854f3509e6ab629b9 Author: xuzhenbao <[email protected]> AuthorDate: Fri Oct 27 15:52:27 2023 +0800 Update libs/utils/src/filter.c Co-authored-by: Pepijn Noltes <[email protected]> --- libs/utils/src/filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/utils/src/filter.c b/libs/utils/src/filter.c index e5931290..d03db03f 100644 --- a/libs/utils/src/filter.c +++ b/libs/utils/src/filter.c @@ -165,7 +165,7 @@ static celix_filter_t * filter_parseNot(char * filterString, int * pos) { } child = filter_parseFilter(filterString, pos); - if(child == NULL){ + if (child == NULL) { return NULL; } celix_array_list_t* children = celix_arrayList_create();
