Skip to content

Commit

Permalink
Use unsigned int instead of uint like rest of code base.
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Mar 12, 2020
1 parent 4ce393a commit 97d2850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linenoise.c
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ static void refreshMultiLine(struct linenoiseState *l) {
/* Write the prompt and the current buffer content */
abAppend(&ab,l->prompt,strlen(l->prompt));
if (maskmode == 1) {
uint i;
unsigned int i;
for (i = 0; i < l->len; i++) abAppend(&ab,"*",1);
} else {
abAppend(&ab,l->buf,l->len);
Expand Down

0 comments on commit 97d2850

Please sign in to comment.