Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
keywordset: Match type of local variable to argument
  • Loading branch information
donald committed May 5, 2022
1 parent 0c35a52 commit 98e4d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keywordset.c
Expand Up @@ -15,7 +15,7 @@ struct keywordset {

static int find_name(struct keywordset *kws, char *name, size_t len) {
int i;
int j;
size_t j;
for ( i = 0; i < kws->used ; i++ ) {
j = 0;
while(1) {
Expand Down

0 comments on commit 98e4d2c

Please sign in to comment.