Compiler Warning (level 3) C4135

conversion between different integral types

Information was lost between two integral types.

Tips

This warning can be avoided by providing the appropriate type cast. For example, the following code generates this warning:

void main(void)
{
   int intvar;
   long longvar;
   intvar = longvar;  // warning
// intvar = (int) longvar; // No warning for this line
}