summaryrefslogtreecommitdiff
path: root/src/tools/asm/q3asm.c
diff options
context:
space:
mode:
authorThilo Schulz <arny@ats.s.bawue.de>2011-08-05 13:33:15 +0000
committerTim Angus <tim@ngus.net>2013-01-10 23:26:57 +0000
commit30876f1accd3cfde76c6f52e31c869f6a95f60a8 (patch)
treed9093961aad44dae217d37f7d3a1aa8bb74ba5e6 /src/tools/asm/q3asm.c
parent03c2dab55aeba17d69189a7e2e02d66cc9dd587e (diff)
Bug 5146 - Remove last of warnings under gcc 4.6.1 for Linux, patch by q3urt.undead@gmail.com
Diffstat (limited to 'src/tools/asm/q3asm.c')
-rw-r--r--src/tools/asm/q3asm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tools/asm/q3asm.c b/src/tools/asm/q3asm.c
index 6c4c9195..f36c6eac 100644
--- a/src/tools/asm/q3asm.c
+++ b/src/tools/asm/q3asm.c
@@ -951,12 +951,11 @@ STAT("PROC");
ASM(ENDPROC)
{
- int v, v2;
if ( !strcmp( token, "endproc" ) ) {
STAT("ENDPROC");
Parse(); // skip the function name
- v = ParseValue(); // locals
- v2 = ParseValue(); // arg marshalling
+ ParseValue(); // locals
+ ParseValue(); // arg marshalling
// all functions must leave something on the opstack
instructionCount++;