mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
In version 1.8 I botched findval()'s type, fix.
This commit is contained in:
parent
de4ad3826b
commit
848b3d0fd7
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ char *xstrdup(const char *str);
|
|||
#define STOREVAL(list,item) \
|
||||
storeval(list,item)
|
||||
|
||||
definition *findval(list *lst, char *val, int (*cmp)(char *, char *));
|
||||
definition *findval(list *lst, char *val, int (*cmp)(definition *, char *));
|
||||
|
||||
#define FINDVAL(list,item,finder) \
|
||||
findval(list, item, finder)
|
||||
|
|
|
|||
Loading…
Reference in a new issue