'conversion' : truncation of constant value
The type conversion causes a constant to exceed the space allocated for it. You may need to use a larger type for the constant.
Example
char c = 128; // warning char x = (char) 128; // warning