summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-02-13 18:47:13 +0000
committerCarl Hetherington <carl@carlh.net>2011-02-13 18:47:13 +0000
commitd36e6b95c0432eb0d2a410456aa96045deb3f811 (patch)
tree60c78f88d027905547957812c5fc14cbcf654342 /libs/surfaces
parent6b14bbd4f3a3222b223a9bda81ab6a6592f7df4d (diff)
GCC 4.6 fixes from oget (#3771).
git-svn-id: svn://localhost/ardour2/branches/3.0@8835 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/wiimote/wiimote.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaces/wiimote/wiimote.cc b/libs/surfaces/wiimote/wiimote.cc
index 867e1c38e4..26f7e1810f 100644
--- a/libs/surfaces/wiimote/wiimote.cc
+++ b/libs/surfaces/wiimote/wiimote.cc
@@ -178,7 +178,7 @@ wiimote_discovery:
std::cerr << "Wiimote: discovering, press 1+2" << std::endl;
while (!wiimote_handle && !main_thread_quit) {
- bdaddr = *BDADDR_ANY;
+ bdaddr = (bdaddr_t) {{0, 0, 0, 0, 0, 0}};
callback_thread_registered_for_ardour = false;
wiimote_handle = cwiid_open(&bdaddr, 0);