[ERROR]
A return was made with an expression, though the function has void return type.
void f(void) {
return 1;
}
Do not return an expression in a function with void return type. Just write return, or write nothing.