summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2015-12-27 21:19:52 -0500
committerRJ Ryan <rryan@mixxx.org>2015-12-27 21:20:05 -0500
commit201a19afa5a5265176ea39026b29cb291bb13000 (patch)
tree1eb0593be41693fa3f48e1a901c448c5b9ac5e5e /src
parent0f0f7960f8e6ceb497c85e6f880c3f462379379e (diff)
Fix console declaration in mixxx-test entrypoint.
Diffstat (limited to 'src')
-rw-r--r--src/test/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/main.cpp b/src/test/main.cpp
index 0645ab6dcc..8434f1f85c 100644
--- a/src/test/main.cpp
+++ b/src/test/main.cpp
@@ -3,7 +3,7 @@
#include "errordialoghandler.h"
int main(int argc, char **argv) {
- Console console();
+ Console console;
// We never want to popup error dialogs when running tests.
ErrorDialogHandler::setEnabled(false);
testing::InitGoogleTest(&argc, argv);