mirror of
https://github.com/moparisthebest/curl
synced 2024-11-15 14:05:03 -05:00
sws.c: Fixed compilation warning
sws.c:2191 warning: 'rc' may be used uninitialized in this function
This commit is contained in:
parent
ef91f04927
commit
f5e9c636e8
@ -1960,7 +1960,7 @@ int main(int argc, char *argv[])
|
|||||||
#endif
|
#endif
|
||||||
char *pidname= (char *)".http.pid";
|
char *pidname= (char *)".http.pid";
|
||||||
struct httprequest req;
|
struct httprequest req;
|
||||||
int rc;
|
int rc = 0;
|
||||||
int error;
|
int error;
|
||||||
int arg=1;
|
int arg=1;
|
||||||
long pid;
|
long pid;
|
||||||
|
Loading…
Reference in New Issue
Block a user