Commit 5550eba8 authored by Måns Rullgård's avatar Måns Rullgård

typo: add missing \ in multi-line macro

Originally committed as revision 12466 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e6b790f9
......@@ -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
......
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