Skip to content

Commit 97d2850

Browse files
committed
Use unsigned int instead of uint like rest of code base.
1 parent 4ce393a commit 97d2850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linenoise.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ static void refreshMultiLine(struct linenoiseState *l) {
598598
/* Write the prompt and the current buffer content */
599599
abAppend(&ab,l->prompt,strlen(l->prompt));
600600
if (maskmode == 1) {
601-
uint i;
601+
unsigned int i;
602602
for (i = 0; i < l->len; i++) abAppend(&ab,"*",1);
603603
} else {
604604
abAppend(&ab,l->buf,l->len);

0 commit comments

Comments
 (0)