From eb20f704f3eacfff6b18fa292c3d56da0b2a653c Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Mon, 28 May 2001 22:23:18 +0000 Subject: [PATCH] fixed #define line continuation in gstsparc.h Original commit message from CVS: fixed #define line continuation in gstsparc.h --- gst/gstsparc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/gstsparc.h b/gst/gstsparc.h index 8dca391cc9..855207734e 100644 --- a/gst/gstsparc.h +++ b/gst/gstsparc.h @@ -24,11 +24,11 @@ #define __GST_GSTSPARC_H__ #define GST_ARCH_SET_SP(stackpointer) \ - __asm__( "ta 3\n\t" + __asm__( "ta 3\n\t" \ "mov %0, %%sp" : : "r"(stackpointer)); #define GST_ARCH_CALL(target) \ - __asm__( "call %0,0\n\t" + __asm__( "call %0,0\n\t" \ "nop" : : "r"(target) ); #define GST_ARCH_PRESETJMP() \