OSDN Git Service

typo: add missing \ in multi-line macro
authorMåns Rullgård <mans@mansr.com>
Mon, 17 Mar 2008 02:33:05 +0000 (02:33 +0000)
committerMåns Rullgård <mans@mansr.com>
Mon, 17 Mar 2008 02:33:05 +0000 (02:33 +0000)
Originally committed as revision 12466 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ppc/mathops.h

index d7cc853..82abadc 100644 (file)
@@ -30,8 +30,8 @@
 
 /* signed 16x16 -> 32 multiply */
 #   define MUL16(ra, rb) \
-        ({ int __rt;
-         asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb));
+        ({ int __rt; \
+         asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); \
          __rt; })
 #endif