Fix w32_sysdep_init() to complain to stderr, not stdout
This commit is contained in:
parent
518c8d6fbf
commit
9697912a90
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ w32_sysdep_init(void)
|
||||||
|
|
||||||
err = w32_socket_init();
|
err = w32_socket_init();
|
||||||
if (err != 0) {
|
if (err != 0) {
|
||||||
printf("WSAStartup Failed, error code %d\n", err);
|
fprintf(stderr, "WSAStartup Failed, error code %d\n", err);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue