diff options
author | ramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-09-12 20:10:22 +0000 |
---|---|---|
committer | ramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-09-12 20:10:22 +0000 |
commit | 03343659cad057b5297fe73cfe2bc419a598b00c (patch) | |
tree | fb6c16f87524a89335ae5f492d15761b0d389403 /libswscale/ppc | |
parent | 77cb01d34f0341c3e3cdcdb946739e7fb6e3dc7f (diff) |
Remove ; after while(0) in macros.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29674 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/ppc')
-rw-r--r-- | libswscale/ppc/yuv2rgb_altivec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/ppc/yuv2rgb_altivec.c b/libswscale/ppc/yuv2rgb_altivec.c index ff5fab713e..b549a450a5 100644 --- a/libswscale/ppc/yuv2rgb_altivec.c +++ b/libswscale/ppc/yuv2rgb_altivec.c @@ -167,7 +167,7 @@ do { \ vec_st (_0, 0, ptr++); \ vec_st (_1, 0, ptr++); \ vec_st (_2, 0, ptr++); \ -} while (0); +} while (0) #define vec_mstrgb24(x0,x1,x2,ptr) \ do { \ @@ -176,7 +176,7 @@ do { \ vec_st (_0, 0, ptr++); \ vec_st (_1, 0, ptr++); \ vec_st (_2, 0, ptr++); \ -} while (0); +} while (0) /* pack the pixels in rgb0 format msb R @@ -198,7 +198,7 @@ do { \ vec_st (_2, 2*16, (T *)ptr); \ vec_st (_3, 3*16, (T *)ptr); \ ptr += 4; \ -} while (0); +} while (0) /* |