1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

sws.c: Fixed compilation warning

sws.c:2191 warning: 'rc' may be used uninitialized in this function
This commit is contained in:
Steve Holme 2014-12-06 22:18:42 +00:00
parent ef91f04927
commit f5e9c636e8

View File

@ -1960,7 +1960,7 @@ int main(int argc, char *argv[])
#endif
char *pidname= (char *)".http.pid";
struct httprequest req;
int rc;
int rc = 0;
int error;
int arg=1;
long pid;