[WARNING]
A function call was done without saving the result.
int f(void);
void main(void) {
f(); // ignore result
}
Assign the function call to a variable, if you need the result afterwards. Otherwise cast the result to void. E.g.:
int f(void);
void main(void) {
(void)f(); // explicitly ignore result
}