1
0
mirror of https://github.com/falk-werner/webfuse synced 2025-06-13 12:54:15 +00:00

fixes warning about unused param

This commit is contained in:
Falk Werner 2019-03-23 11:33:03 +01:00
parent d6479d49e1
commit eea13654b6

View File

@ -226,6 +226,8 @@ static int check_password(struct args * args)
static int invoke_invalid_command(struct args * args)
{
(void) args;
fprintf(stderr, "error: unknown command\n");
return EXIT_FAILURE;
}