From 6a9bc1ec4718427d8b368461ef6e98c4831d93e9 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Tue, 28 Jun 2011 23:14:11 +0200 Subject: [PATCH] Remove leftover backslash from macro conversion in FRACTMUL_SHL --- 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