Commit 72f74fc8 authored by mru's avatar mru

typo: add missing \ in multi-line macro


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12466 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a22242a2
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
/* signed 16x16 -> 32 multiply */ /* signed 16x16 -> 32 multiply */
# define MUL16(ra, rb) \ # define MUL16(ra, rb) \
({ int __rt; ({ int __rt; \
asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); \
__rt; }) __rt; })
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment