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 }