mirror of
https://github.com/curl/curl.git
synced 2026-04-23 18:02:15 +03:00
typecast enum to int to make it printf() properly
This commit is contained in:
parent
ef783d8da7
commit
2b700fae9d
1 changed files with 2 additions and 1 deletions
|
|
@ -473,7 +473,8 @@ char *glob_match_url(char *filename, URLGlob *glob)
|
|||
appendlen = (int)strlen(numbuf);
|
||||
break;
|
||||
default:
|
||||
printf("internal error: invalid pattern type (%d)\n", pat.type);
|
||||
printf("internal error: invalid pattern type (%d)\n",
|
||||
(int)pat.type);
|
||||
free(target);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue