This commit is contained in:
Jan (janneke) Nieuwenhuizen 2022-09-12 07:35:43 +02:00
parent 1985a85be0
commit d47f02aee2
1 changed files with 1 additions and 2 deletions

View File

@ -254,8 +254,7 @@ modulo_024 (struct scm *a, struct scm *b)
long n = a->value;
long v = b->value;
int sign_p = 0;
long w;
w = v;
long w = v;
//long u;
if (v == 0)
error (cstring_to_symbol ("divide-by-zero"), a);