1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-02 14:51:23 +00:00

Fix unused variable warnings. (#173)

This commit is contained in:
Bruce Mitchener
2021-01-04 12:58:16 +07:00
committed by GitHub
parent 9373f4ebbe
commit a481057fbe
20 changed files with 56 additions and 45 deletions

View File

@@ -188,7 +188,7 @@ LispPTR map_code_pointers(LispPTR codeblock, short int casep) {
LispPTR remimplicitkeyhash(LispPTR item, LispPTR ik_hash_table) {
Ikhashtbl *ik_htable;
LispPTR reprobe, bits, limits, index, base, value, key_accessor;
LispPTR reprobe, bits, limits, index, base, value;
ik_htable = (Ikhashtbl *)Addr68k_from_LADDR(ik_hash_table);
bits = Hashingbits(item);
limits = ik_htable->last_index;