mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
The second argument to fgetln() is a size_t *, not an int *.
This commit is contained in:
parent
81ada60e7e
commit
19ff45acc7
1 changed files with 1 additions and 1 deletions
|
|
@ -426,7 +426,7 @@ read_configuration(void)
|
|||
char *field; /* first part, the field name */
|
||||
char *args; /* second part, arguments */
|
||||
char *trail; /* remaining part after parsing, should be '' */
|
||||
int len; /* length of current line */
|
||||
size_t len; /* length of current line */
|
||||
int i,j; /* loop counters */
|
||||
action_t *action = NULL; /* current action */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue