summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}