changed third argument to size_t to match SCO prototype

This commit is contained in:
Daniel Stenberg
2000-12-05 08:04:04 +00:00
parent 54e46e199c
commit 6ced1ba615
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,7 @@
# define perror(x) fprintf(stderr, "Error in: %s\n", x) # define perror(x) fprintf(stderr, "Error in: %s\n", x)
#endif #endif
char *getpass_r(const char *prompt, char *buffer, int buflen) char *getpass_r(const char *prompt, char *buffer, size_t buflen)
{ {
FILE *infp; FILE *infp;
FILE *outfp; FILE *outfp;

View File

@@ -3,6 +3,6 @@
/* /*
* Returning NULL will abort the continued operation! * Returning NULL will abort the continued operation!
*/ */
char* getpass_r(char *prompt, char* buffer, int buflen ); char* getpass_r(char *prompt, char* buffer, size_t buflen );
#endif #endif