diff options
author | Stijn Buys <ingar@osirion.org> | 2008-03-28 23:03:28 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-03-28 23:03:28 +0000 |
commit | 09924354d4bf574623868beeb6898ce9b77d9cd2 (patch) | |
tree | 9331a123a763e4ec2731bcd5e71eab83e904ccab /src | |
parent | e6841abd64bc73e451fdbf6e8b8b3e73a2fa04ac (diff) |
win32 compile error fix
Diffstat (limited to 'src')
-rw-r--r-- | src/core/application.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/application.cc b/src/core/application.cc index 4964e50..2807d0e 100644 --- a/src/core/application.cc +++ b/src/core/application.cc @@ -142,7 +142,7 @@ void Application::init() // Initialize win32 socket library WSADATA wsa_data; WORD wsa_version = MAKEWORD(2, 0); - if (WSAStartup(wsa_version, wsa_data) != 0 ) { + if (WSAStartup(wsa_version, &wsa_data) != 0 ) { con_warn << "Could not initialize scoket library!" << std::endl; } #endif |