summaryrefslogtreecommitdiff
path: root/libs/pbd/ffs.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-17 13:49:12 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-17 13:50:04 -0400
commit57e53d577b914ca1a56d2a59a9dd48a450c573ce (patch)
treebc94a7008ba549feea81d1dbce8e300082505532 /libs/pbd/ffs.cc
parentab628ae3c3bab77227cba9087b80b25b9148a1a9 (diff)
break symbol name cycle on non-win32-non-gcc platforms
Diffstat (limited to 'libs/pbd/ffs.cc')
-rw-r--r--libs/pbd/ffs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/ffs.cc b/libs/pbd/ffs.cc
index 8f7ecdb502..0a61969e8a 100644
--- a/libs/pbd/ffs.cc
+++ b/libs/pbd/ffs.cc
@@ -28,7 +28,7 @@ ffs (int x)
#if defined(WIN32) && defined(__GNUC__)
return __builtin_ffs(x);
#else
- return ffs(x);
+ return ::ffs(x);
#endif
}