changeset 1397:66fd3bc1cfcf

bdiff: change spurious __inline to inline
author Matt Mackall <mpm@selenic.com>
date Tue, 18 Oct 2005 12:11:23 -0700
parents 8c3e2a254257
children 3f76ac60130d
files mercurial/bdiff.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/bdiff.c	Tue Oct 18 00:45:27 2005 -0700
+++ b/mercurial/bdiff.c	Tue Oct 18 12:11:23 2005 -0700
@@ -53,7 +53,7 @@
 	struct hunk *base, *head;
 };
 
-static __inline uint32_t rol32(uint32_t word, unsigned int shift)
+static inline uint32_t rol32(uint32_t word, unsigned int shift)
 {
         return (word << shift) | (word >> (32 - shift));
 }