changeset 10392:18ab5081d37d

warning fixes
author alex
date Mon, 07 Jul 2003 17:12:45 +0000
parents eb1f8a10ce62
children 122564a2df38
files libmpeg2/idct.c libmpeg2/idct_alpha.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libmpeg2/idct.c	Mon Jul 07 16:26:27 2003 +0000
+++ b/libmpeg2/idct.c	Mon Jul 07 17:12:45 2003 +0000
@@ -60,7 +60,7 @@
 } while (0)
 #endif
 
-static void inline idct_row (int16_t * const block)
+static inline void idct_row (int16_t * const block)
 {
     int d0, d1, d2, d3;
     int a0, a1, a2, a3, b0, b1, b2, b3;
@@ -113,7 +113,7 @@
     block[7] = (a0 - b0) >> 8;
 }
 
-static void inline idct_col (int16_t * const block)
+static inline void idct_col (int16_t * const block)
 {
     int d0, d1, d2, d3;
     int a0, a1, a2, a3, b0, b1, b2, b3;
--- a/libmpeg2/idct_alpha.c	Mon Jul 07 16:26:27 2003 +0000
+++ b/libmpeg2/idct_alpha.c	Mon Jul 07 17:12:45 2003 +0000
@@ -57,7 +57,7 @@
 } while (0)
 #endif
 
-static void inline idct_row (int16_t * const block)
+static inline void idct_row (int16_t * const block)
 {
     uint64_t l, r;
     int_fast32_t d0, d1, d2, d3;
@@ -114,7 +114,7 @@
     block[7] = (a0 - b0) >> 8;
 }
 
-static void inline idct_col (int16_t * const block)
+static inline void idct_col (int16_t * const block)
 {
     int_fast32_t d0, d1, d2, d3;
     int_fast32_t a0, a1, a2, a3, b0, b1, b2, b3;