mirror of
https://github.com/curl/curl.git
synced 2026-08-24 22:43:38 +03:00
prevent compiler warnings
This commit is contained in:
parent
744d8c1006
commit
b8a6913e09
4 changed files with 8 additions and 7 deletions
|
|
@ -72,9 +72,9 @@ CURLcode Curl_initinfo(struct SessionHandle *data)
|
|||
CURLcode Curl_getinfo(struct SessionHandle *data, CURLINFO info, ...)
|
||||
{
|
||||
va_list arg;
|
||||
long *param_longp;
|
||||
double *param_doublep;
|
||||
char **param_charp;
|
||||
long *param_longp=NULL;
|
||||
double *param_doublep=NULL;
|
||||
char **param_charp=NULL;
|
||||
va_start(arg, info);
|
||||
|
||||
switch(info&CURLINFO_TYPEMASK) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue