big int: fix Managed.dump()

master
Vincent Rischmann 2020-09-06 17:55:23 +02:00 committed by Veikka Tuominen
parent eca20b5e03
commit 533bfc68bf
1 changed files with 1 additions and 1 deletions

View File

@ -1449,7 +1449,7 @@ pub const Managed = struct {
for (self.limbs[0..self.len()]) |limb| {
std.debug.warn("{x} ", .{limb});
}
std.debug.warn("capacity={} positive={}\n", .{ self.limbs.len, self.positive });
std.debug.warn("capacity={} positive={}\n", .{ self.limbs.len, self.isPositive() });
}
/// Negate the sign.