mirror of
https://github.com/curl/curl.git
synced 2026-07-22 22:47:17 +03:00
make loop variable size_t as well when looping to a size_t limit
This commit is contained in:
parent
7225b14002
commit
35e158d80b
1 changed files with 1 additions and 1 deletions
|
|
@ -199,7 +199,7 @@ char *getpass_r(const char *prompt, char *buffer, size_t buflen)
|
|||
#include <conio.h>
|
||||
char *getpass_r(const char *prompt, char *buffer, size_t buflen)
|
||||
{
|
||||
int i;
|
||||
size_t i;
|
||||
printf("%s", prompt);
|
||||
|
||||
for(i=0; i<buflen; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue