From f1c13af703b8ab43a72626df69aba2ae7b73a5e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ni=C3=B1o=20D=C3=ADaz?= Date: Fri, 27 Oct 2017 20:21:00 +0100 Subject: [PATCH] Fix warning about unused variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Antonio Niño Díaz --- src/asm/symbol.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/asm/symbol.c b/src/asm/symbol.c index 2207c2f6..e02a3ad9 100644 --- a/src/asm/symbol.c +++ b/src/asm/symbol.c @@ -62,9 +62,8 @@ Callback_NARG(struct sSymbol * sym) } SLONG -Callback__LINE__(struct sSymbol * sym) +Callback__LINE__(struct sSymbol __attribute__((unused)) * sym) { - sym = sym; return (nLineNo); }