use unsigned for ffzl definition

This makes more sense and avoids clang tidy conversion warnings.
This commit is contained in:
Daniel Micay 2022-01-03 01:29:12 -05:00
parent 8ae78237ae
commit c6af50d088

2
util.h
View File

@ -28,7 +28,7 @@
#define STRINGIFY(s) #s
#define ALIAS(f) __attribute__((alias(STRINGIFY(f))))
static inline int ffzl(long x) {
static inline int ffzl(unsigned long x) {
return __builtin_ffsl(~x);
}