changeset 3731:10130917f37b

warning fix
author pl
date Tue, 25 Dec 2001 16:30:25 +0000
parents 666a946a71b9
children 837ed2f1ed5e
files libmpeg2/idct.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;