We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In adintool/mainloop.c, connect_to_output_device is declared as:
connect_to_output_device
static int connect_to_output_device()
Note that the parameters have not been declared. If no parameters are required, it should say void between the parentheses.
void
This warning occurs during the build when the function is called with a parameter:
mainloop.c:1280:34: warning: too many arguments in call to 'connect_to_output_device' connect_to_output_device(recog); ~~~~~~~~~~~~~~~~~~~~~~~~ ^
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In adintool/mainloop.c,
connect_to_output_device
is declared as:Note that the parameters have not been declared. If no parameters are required, it should say
void
between the parentheses.This warning occurs during the build when the function is called with a parameter:
The text was updated successfully, but these errors were encountered: