From 58bb5c752568f8f9a1cb4d9533268d0ecad34e12 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Mon, 19 Nov 2007 20:40:14 +0000 Subject: (svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style This fixes also FS#1450 --- src/macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/macros.h') diff --git a/src/macros.h b/src/macros.h index 75cd43b7a..a4dd78845 100644 --- a/src/macros.h +++ b/src/macros.h @@ -553,7 +553,7 @@ template static inline T ROR(const T x, const uint8 n) * @param n The base of the number we are searching * @return The smallest multiple of n equal or greater than x */ -template static inline T ALIGN(const T x, uint n) { +template static inline T Align(const T x, uint n) { n--; return (T)((x + n) & ~(n)); } -- cgit v1.2.3-54-g00ecf