Fix prototype for main.

A typo in 297d7c06c4 meant main had the
wrong prototype on non-Windows systems, breaking the build.
This commit is contained in:
Adam Sampson 2022-10-16 10:56:43 +01:00 committed by Rafael Kitover
parent 927ccf0bc8
commit 54b8192d30
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ int WinMain(HINSTANCE hInstance,
#else // __WXMSW__
int main(int argc, char* argv) {
int main(int argc, char** argv) {
// Set up logging.
#ifdef DEBUG
wxLog::SetLogLevel(wxLOG_Trace);