diff options
author | a1346054 <36859588+a1346054@users.noreply.github.com> | 2021-08-24 19:58:55 +0000 |
---|---|---|
committer | Daniel Friesel <derf@chaosdorf.de> | 2022-01-03 10:24:07 +0100 |
commit | d89975957d54ac901ce52e6e3b9ca95d96048f8f (patch) | |
tree | c96709f1790f19590a69191bcedae0ae6d400209 /src/gib_list.c | |
parent | 2a9a7e2557407d5b0c7e6b9680828fb431776ff5 (diff) |
Trim trailing whitespace
Diffstat (limited to 'src/gib_list.c')
-rw-r--r-- | src/gib_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gib_list.c b/src/gib_list.c index a8ba1dd..e7710bc 100644 --- a/src/gib_list.c +++ b/src/gib_list.c @@ -520,7 +520,7 @@ gib_list_find(gib_list *root, unsigned char (*find_func)(gib_list *node, void *d for (i=root; i; i=i->next) if (find_func(i,data)) return i; - + return NULL; } |