# HG changeset patch # User pl # Date 1009297825 0 # Node ID 10130917f37b7bc2a2413798122345a0ce13f8c9 # Parent 666a946a71b986db3ddddfb8b276ace1584d041a warning fix diff -r 666a946a71b9 -r 10130917f37b libmpeg2/idct.c --- a/libmpeg2/idct.c Tue Dec 25 15:03:36 2001 +0000 +++ b/libmpeg2/idct.c Tue Dec 25 16:30:25 2001 +0000 @@ -105,7 +105,7 @@ * c[1..7] = 128*sqrt (2) */ -static void inline idct_row (int16_t * block) +static inline void idct_row (int16_t * block) { int x0, x1, x2, x3, x4, x5, x6, x7, x8; @@ -174,7 +174,7 @@ * c[1..7] = (1/1024)*sqrt (2) */ -static void inline idct_col (int16_t *block) +static inline void idct_col (int16_t *block) { int x0, x1, x2, x3, x4, x5, x6, x7, x8;