Fix warning in main function

main could according to the compiler end up not returning. of course it will always return, but I satisfied the compiler by adding a default case.

Signed-off-by: Tayou <tayou@gmx.net>
This commit is contained in:
Tayou 2022-11-07 14:33:37 +01:00
parent d558ff305a
commit 9ac6114b63
No known key found for this signature in database
GPG Key ID: 02CA43C1CB6E9887

View File

@ -91,5 +91,7 @@ int main(int argc, char *argv[])
return 1;
case Application::Succeeded:
return 0;
default:
return -1;
}
}