1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-07-29 13:01:14 +03:00

examples: fixed mixed line-endings introduced with aedfba25b8

This commit is contained in:
Marc Hoersken
2014-12-15 01:09:13 +01:00
parent c0bface8a7
commit be95032e29
22 changed files with 44 additions and 44 deletions

View File

@ -51,9 +51,9 @@ int main(int argc, char *argv[])
int err;
err = WSAStartup(MAKEWORD(2,0), &wsadata);
if (err != 0) {
if (err != 0) {
fprintf(stderr, "WSAStartup failed with error: %d\n", err);
return 1;
return 1;
}
#endif