The second argument to fgetln() is a size_t *, not an int *.

This commit is contained in:
Thomas Moestl 2003-07-12 17:56:50 +00:00
parent 81ada60e7e
commit 19ff45acc7

View File

@ -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 */