View Single Post
  #5  
Old 01-11-2011, 11:16 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

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);
Reply With Quote