changeset 6501:517522cd1906 libavcodec

typo: add missing \ in multi-line macro
author mru
date Mon, 17 Mar 2008 02:33:05 +0000
parents 4e37a1156d72
children 98e3db1d7ca4
files ppc/mathops.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ppc/mathops.h	Mon Mar 17 02:33:02 2008 +0000
+++ b/ppc/mathops.h	Mon Mar 17 02:33:05 2008 +0000
@@ -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