Skip to content

Commit

Permalink
sws.c: Fixed compilation warning
Browse files Browse the repository at this point in the history
sws.c:2191 warning: 'rc' may be used uninitialized in this function
  • Loading branch information
captain-caveman2k committed Dec 6, 2014
1 parent ef91f04 commit f5e9c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/server/sws.c
Expand Up @@ -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;
Expand Down

0 comments on commit f5e9c63

Please sign in to comment.