summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index dcd7ae133..6e6bc1b42 100644
--- a/misc.c
+++ b/misc.c
@@ -10,7 +10,7 @@ extern void InitNewsItemStructs();
byte _name_array[512][32];
-static INLINE uint32 ROR(uint32 x, int n)
+static inline uint32 ROR(uint32 x, int n)
{
return (x >> n) + (x << ((sizeof(x)*8)-n));
}