summaryrefslogtreecommitdiff
path: root/src/tools/asm/q3asm.c
diff options
context:
space:
mode:
author/dev/humancontroller <devhc@example.com>2013-04-14 18:33:26 +0200
committerTim Angus <tim@ngus.net>2013-05-31 23:10:58 +0100
commit386b7b9ffe6238d5107bbaeec34663248a6aa848 (patch)
treeeadcfb05fb43cba66574fe00fcd54c8161dbf069 /src/tools/asm/q3asm.c
parent83b6cff2d632f941389998bdbb95df9bb76bcf9d (diff)
drop some useless return statements
Diffstat (limited to 'src/tools/asm/q3asm.c')
-rw-r--r--src/tools/asm/q3asm.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools/asm/q3asm.c b/src/tools/asm/q3asm.c
index 383f318f..44a42196 100644
--- a/src/tools/asm/q3asm.c
+++ b/src/tools/asm/q3asm.c
@@ -251,7 +251,6 @@ static void hashtable_init (hashtable_t *H, int buckets)
{
H->buckets = buckets;
H->table = calloc(H->buckets, sizeof(*(H->table)));
- return;
}
static hashtable_t *hashtable_new (int buckets)
@@ -286,7 +285,6 @@ static void hashtable_add (hashtable_t *H, int hashvalue, void *datum)
}
hc->data = datum;
hc->next = 0;
- return;
}
static hashchain_t *hashtable_get (hashtable_t *H, int hashvalue)