Make param2text() take an int argument, as that is what's being passed in.

This is made to prevent compiler warnings.
This commit is contained in:
Daniel Stenberg 2004-02-09 08:31:52 +00:00
parent e723d2eb7c
commit cc85f813d1
1 changed files with 2 additions and 1 deletions

View File

@ -933,8 +933,9 @@ typedef enum {
PARAM_LAST PARAM_LAST
} ParameterError; } ParameterError;
static const char *param2text(ParameterError error) static const char *param2text(int res)
{ {
ParameterError error = (ParameterError)res;
switch(error) { switch(error) {
case PARAM_GOT_EXTRA_PARAMETER: case PARAM_GOT_EXTRA_PARAMETER:
return "had unsupported trailing garbage"; return "had unsupported trailing garbage";