Remove unused variable from Prim_fixnum_lsh.
authorMatt Birkholz <matt@birkholz.chandler.az.us>
Wed, 15 Feb 2012 01:19:26 +0000 (18:19 -0700)
committerMatt Birkholz <matt@birkholz.chandler.az.us>
Wed, 15 Feb 2012 01:19:26 +0000 (18:19 -0700)
src/microcode/fixnum.c

index 062866014f17d76cddd073f4d39491a3679c7517..3af0dae673de0e9c57ad78c4092ee3e9569f34b7 100644 (file)
@@ -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));
   }