summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/mathops.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-03-17 02:33:05 +0000
committerMåns Rullgård <mans@mansr.com>2008-03-17 02:33:05 +0000
commit5550eba88d5cfd975be761eef215e99234cd4fe1 (patch)
treec66c9348068d486c9ff621b0980d2550cf0dac78 /libavcodec/ppc/mathops.h
parente6b790f9e795a3af67cca2300a55e6cd467625d8 (diff)
typo: add missing \ in multi-line macro
Originally committed as revision 12466 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc/mathops.h')
-rw-r--r--libavcodec/ppc/mathops.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/mathops.h b/libavcodec/ppc/mathops.h
index d7cc85365f..82abadcba8 100644
--- a/libavcodec/ppc/mathops.h
+++ b/libavcodec/ppc/mathops.h
@@ -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