1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Attempt to fix build for MSVC

This commit is contained in:
Perttu Ahola 2012-03-18 19:08:13 +02:00
parent 9c4f68e174
commit c54a40df06
2 changed files with 10 additions and 10 deletions

View file

@ -992,9 +992,9 @@ void Connection::serve(u16 port)
}
catch(SocketException &e){
// Create event
ConnectionEvent e;
e.bindFailed();
putEvent(e);
ConnectionEvent ce;
ce.bindFailed();
putEvent(ce);
}
}