diff options
author | jiung-yu <jiung.yu@samsung.com> | 2022-09-02 07:22:49 +0900 |
---|---|---|
committer | jiung-yu <jiung.yu@samsung.com> | 2022-09-02 07:22:49 +0900 |
commit | 4401720aa00913507a25c24772bc7c4e865267f3 (patch) | |
tree | d484c869d96f537925d1800f7be9a612f1dc76bb | |
parent | 119937774cfc97637485c10397cf0d388ff30883 (diff) | |
download | toybox-4401720aa00913507a25c24772bc7c4e865267f3.tar.gz toybox-4401720aa00913507a25c24772bc7c4e865267f3.tar.bz2 toybox-4401720aa00913507a25c24772bc7c4e865267f3.zip |
Change type from int to size_ttizen_7.0_m2_releasesubmit/tizen/20220905.044029accepted/tizen/unified/20220905.124608accepted/tizen/7.0/unified/hotfix/20221116.111507accepted/tizen/7.0/unified/20221110.062039tizen_7.0_hotfixaccepted/tizen_7.0_unified_hotfix
Change-Id: I5b1d33f9b0dc9cc9e1ae6ef3cbae781026ff479b
-rw-r--r-- | toys/pending/dhcpd.c | 3 |
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) |