From 366686b8917e245b517a04be43e5895502c57328 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Tue, 28 Jun 2011 21:16:39 +0000 Subject: [PATCH] Remove leftover backslash from macro conversion in FRACTMUL_SHL git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30094 a1c6a512-1295-4272-9138-f99709370657 --- apps/fracmul.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/fracmul.h b/apps/fracmul.h index 5dbe4f9ef5..624b5de794 100644 --- a/apps/fracmul.h +++ b/apps/fracmul.h @@ -75,7 +75,7 @@ static inline int32_t FRACMUL(int32_t x, int32_t y) */ static inline int32_t FRACMUL_SHL(int32_t x, int32_t y, int z) { - int32_t t, t2; \ + int32_t t, t2; asm ("smull %[t], %[t2], %[a], %[b]\n\t" "mov %[t2], %[t2], asl %[c]\n\t" "orr %[t], %[t2], %[t], lsr %[d]\n\t" -- 2.11.4.GIT