Fixed syntax error

This commit is contained in:
mathusummut
2019-03-21 12:55:10 +01:00
parent 6b6696cc32
commit 42365f5562

View File

@@ -292,7 +292,7 @@ namespace Game {
#ifdef WIN32 #ifdef WIN32
ShellExecuteA(0, 0, update.c_str(), 0, 0, SW_SHOW); ShellExecuteA(0, 0, update.c_str(), 0, 0, SW_SHOW);
#else #else
printf("xdg-open call resulted in: %d\n", system(("xdg-open " + update).c_str()); printf("xdg-open call resulted in: %d\n", system(("xdg-open " + update).c_str()));
#endif #endif
} catch (...) { } catch (...) {
} }