From 5550eba88d5cfd975be761eef215e99234cd4fe1 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Mon, 17 Mar 2008 02:33:05 +0000 Subject: typo: add missing \ in multi-line macro Originally committed as revision 12466 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ppc/mathops.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/ppc/mathops.h') 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 -- cgit v1.2.3