#40 Fix crash on Linux.

This commit is contained in:
XMRig 2017-07-19 04:28:59 +03:00
parent ebf54c6d04
commit 8f38462bbe
8 changed files with 21 additions and 8 deletions

View file

@ -25,7 +25,7 @@
int main(int argc, char **argv) {
auto app = new App(argc, argv);
App app(argc, argv);
return app->exec();
return app.exec();
}