summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-03-02 00:31:50 +0100
committerCarl Hetherington <cth@carlh.net>2020-03-02 00:31:50 +0100
commit69861be7113fef28bf1cbd9aa6371e5c9b033dd9 (patch)
treeadd4cea050522a80b9d24f8a4bd9ad061252c2aa
parent981100bbff6883ff024b41d4b62e00b2ab8caec4 (diff)
Fix weirdly-allowed misplaced bracket.
-rw-r--r--src/lib/shuffler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/shuffler.cc b/src/lib/shuffler.cc
index f6f05d41d..2d6465526 100644
--- a/src/lib/shuffler.cc
+++ b/src/lib/shuffler.cc
@@ -97,7 +97,7 @@ Shuffler::video (weak_ptr<Piece> weak_piece, ContentVideo video)
LOG_WARNING ("Shuffler is full after receiving frame %1; 3D sync may be incorrect.", video.frame);
}
- LOG_DEBUG_THREED("Shuffler emits frame=%1 eyes=%2 store=%3", _store.front().second.frame, static_cast<int>(_store.front().second.eyes, _store.size()));
+ LOG_DEBUG_THREED("Shuffler emits frame=%1 eyes=%2 store=%3", _store.front().second.frame, static_cast<int>(_store.front().second.eyes), _store.size());
Video (_store.front().first, _store.front().second);
_last = _store.front().second;
_store.pop_front ();