conversion between different integral types
Information was lost while converting between two integer types.
To avoid this warning, provide an appropriate type cast.
Example
void main(void) { int intvar; long longvar; intvar = longvar; // warning // intvar = (int) longvar; // No warning for this line }