Thread
:
eqemuloginserver - after a few days
View Single Post
#
5
01-11-2011, 11:16 AM
joligario
Developer
Join Date: Mar 2003
Posts: 1,498
GCC is picky. They don't like type casting with multiple-word types. Try changing line 129:
Code:
unsigned int mode = *((unsigned int*)data);
to
Code:
(unsigned int) mode = *((unsigned int*)data);
joligario
View Public Profile
Send a private message to joligario
Find all posts by joligario