Boot framework rework (#45)
[lunaix-os.git] / lunaix-os / arch / x86 / includes / sys / muldiv64.h
index 5905990e1c0b2096efa098b317ffcbad5c069ff7..c57568574712d6534694d26d032e68434bc40e85 100644 (file)
@@ -11,7 +11,7 @@
         __base = (base);                                                       \
         if (__builtin_constant_p(__base) && is_pot(__base)) {                  \
             __mod = n & (__base - 1);                                          \
-            n >>= ILOG2(__base);                                               \
+            n >>= ilog2(__base);                                               \
         } else {                                                               \
             asm("" : "=a"(__low), "=d"(__high) : "A"(n));                      \
             __upper = __high;                                                  \