summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toys/pending/dhcpd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/pending/dhcpd.c b/toys/pending/dhcpd.c
index bf3f2eb..213a941 100644
--- a/toys/pending/dhcpd.c
+++ b/toys/pending/dhcpd.c
@@ -741,7 +741,8 @@ static int parse_server_config(char *config_file, struct config_keyword *confkey
{
FILE *fs = NULL;
char *confline_temp = NULL,*confline = NULL, *tk = NULL, *tokens[2] = {NULL, NULL};
- int len, linelen, tcount, count, size = ARRAY_LEN(keywords);
+ int len, tcount, count, size = ARRAY_LEN(keywords);
+ size_t linelen;
for (count = 0; count < size; count++)
if (confkey[count].handler)