From: Matt Birkholz Date: Wed, 15 Feb 2012 01:19:26 +0000 (-0700) Subject: Remove unused variable from Prim_fixnum_lsh. X-Git-Tag: release-9.2.0~292 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=5937088e441b3800284f22a44d609bb3f68ca470;p=mit-scheme.git Remove unused variable from Prim_fixnum_lsh. --- diff --git a/src/microcode/fixnum.c b/src/microcode/fixnum.c index 062866014..3af0dae67 100644 --- a/src/microcode/fixnum.c +++ b/src/microcode/fixnum.c @@ -281,7 +281,6 @@ DEFINE_PRIMITIVE ("FIXNUM-LSH", Prim_fixnum_lsh, 2, 2, 0) { unsigned long x = (arg_unsigned_fixnum (1)); long y = (arg_fixnum (2)); - unsigned long z; LOGICAL_RESULT (FIXNUM_LSH (x, y)); }