Skip to content

Commit

Permalink
Fix signedness complaint in cli-readconf
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Aug 23, 2024
1 parent ac578da commit 395844b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli-readconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ void read_config_file(char* filename, FILE* config_file, cli_runopts* options) {
while (buf_getline(buf, config_file) == DROPBEAR_SUCCESS) {
char* commentStart = NULL;
cfg_option cfg_opt;
int found, i;
// size_t i;
int found;
size_t i;
/* Update line number counter. */
linenum++;

Expand Down

0 comments on commit 395844b

Please sign in to comment.