conversion of pointer to non-integral type
A pointer was cast to a noninteger type, such as float. The cast pointer address may be invalid.
Example
int i = 24; printf( "Address: %f\\n", ( float ) &i );