More B::Concise fixes
[p5sagit/p5-mst-13.2.git] / ext / B / B / Disassembler.pm
index b8b5262..a50b48f 100644 (file)
@@ -56,7 +56,7 @@ sub GET_I32 {
     my $fh = shift;
     my $str = $fh->readn(4);
     croak "reached EOF while reading I32" unless length($str) == 4;
-    return cast_I32(unpack("L", $str));
+    return unpack("l", $str);
 }
 
 sub GET_objindex {