1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-19 22:05:33 +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

@@ -66,8 +66,8 @@ extern DLword *Lisp_world;
DLword compute_hash(char *char_base, DLword offset, DLword length) {
DLword hash;
DLword number;
DLword temp1, temp2;
DLword *word_base;
DLword temp1;
char_base += offset;
hash = (int)(*(char_base)) << 8; /* get first byte */
char_base++; /* skip length area */
@@ -97,7 +97,7 @@ DLword compute_hash(char *char_base, DLword offset, DLword length) {
DLword compute_lisp_hash(char *char_base, DLword offset, DLword length, DLword fatp) {
DLword hash;
DLword number;
DLword temp1, temp2;
DLword temp1;
DLword *word_base;
if (length == 0) return (0);