From 94005513a4927af6f278a1002ec3fdd0b13b29a9 Mon Sep 17 00:00:00 2001 From: stag019 Date: Mon, 23 Dec 2013 14:50:37 -0500 Subject: [PATCH] Comment out unused variable dest. --- src/asm/globlex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/asm/globlex.c b/src/asm/globlex.c index 313007fd..088076bf 100644 --- a/src/asm/globlex.c +++ b/src/asm/globlex.c @@ -109,7 +109,7 @@ ascii2bin(char *s) ULONG ParseFixedPoint(char *s, ULONG size) { - char dest[256]; + //char dest[256]; ULONG i = 0, dot = 0; while (size && dot != 2) { @@ -117,13 +117,13 @@ ParseFixedPoint(char *s, ULONG size) dot += 1; if (dot < 2) { - dest[i] = s[i]; + //dest[i] = s[i]; size -= 1; i += 1; } } - dest[i] = 0; + //dest[i] = 0; yyunputbytes(size);