From 5550eba88d5cfd975be761eef215e99234cd4fe1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= <mans@mansr.com>
Date: Mon, 17 Mar 2008 02:33:05 +0000
Subject: [PATCH] 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(-)

diff --git a/libavcodec/ppc/mathops.h b/libavcodec/ppc/mathops.h
index d7cc85365fb..82abadcba89 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
 
-- 
GitLab