LLDB Arm build fails on ubuntu precise with gcc4.7 with following error
error: case value evaluates to 4283649346, which cannot be narrowed to type 'int' [-Wc++11-narrowing]
The compiler fails to store #define CIFS_MAGIC_NUMBER 0xFF534D42 into a singed int value as in statfs.h the type is being declared as int .
To work around this issue we type cast type value into an unsigned int.
This is safe as type is dependent on the actual 4 byte value stored in it rather than the sign.