summaryrefslogtreecommitdiffhomepage
path: root/tracker-steamvr
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-03-30 14:03:21 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-04-06 04:29:48 +0200
commit7cc9a890e69356eea2614a0272591004718ba719 (patch)
tree7256ed9d86c47cb19a7ec1ee56a3d98dab9c9773 /tracker-steamvr
parent33ed2aafb7fcf367919d7d4db0b97bf54eb38748 (diff)
tracker/steamvr: remove needless once_only macro usage
Diffstat (limited to 'tracker-steamvr')
-rw-r--r--tracker-steamvr/steamvr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-steamvr/steamvr.cpp b/tracker-steamvr/steamvr.cpp
index f2aacb73..5a68dafc 100644
--- a/tracker-steamvr/steamvr.cpp
+++ b/tracker-steamvr/steamvr.cpp
@@ -159,7 +159,7 @@ tt device_list::vr_init_()
if (v)
std::atexit(vr::VR_Shutdown);
else
- once_only(qDebug() << "steamvr: init failure" << error << device_list::strerror(error));
+ qDebug() << "steamvr: init failure" << error << device_list::strerror(error);
return tt(v, error);
}