msrle32: Declare some functions static.
diff --git a/dlls/msrle32/msrle32.c b/dlls/msrle32/msrle32.c
index 96a0807..5decd74 100644
--- a/dlls/msrle32/msrle32.c
+++ b/dlls/msrle32/msrle32.c
@@ -38,12 +38,12 @@
 #define SQR(a)                ((a) * (a))
 
 #define QUALITY_to_DIST(q)    (ICQUALITY_HIGH - q)
-inline WORD ColorCmp(WORD clr1, WORD clr2)
+static inline WORD ColorCmp(WORD clr1, WORD clr2)
 {
   register UINT a = (clr1-clr2);
   return SQR(a);
 }
-inline WORD Intensity(RGBQUAD clr)
+static inline WORD Intensity(RGBQUAD clr)
 {
   return (30 * clr.rgbRed + 59 * clr.rgbGreen + 11 * clr.rgbBlue)/4;
 }