1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 16:45:20 +02: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);
}
}