I have this warning.
warning : 'return' with no value, in function returning non-void.
You have something like:
int function(void)
{
return;
}
Add a return value, or change the return type to void.
The error message is very clear:
warning : 'return' with no value, in function returning non-void.
A return with no value is similar to what I showed. The message also tells you that if the function returns 'void', it would not give the warning. But because the function is supposed to return a value but your 'return' statement didn't, you have a problem.
This is often indicative of ancient code. In the days before the C89 standard, compilers did not necessarily support 'void'. The accepted style was then:
function_not_returning_an_explicit_value(i)
char *i;
{
...
if (...something...)
return;
}
Technically, the function returns an int
, but no value was expected. This style of code elicits the warning you got - and C99 officially outlaws it, but compilers continue to accept it for reasons of backwards compatibility.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With