commit eb08fd5f5f386063353c10c88d30d1bf9cbc2714 (tree)
parent fb7a95b3c458457c12c47f6dabaeb37cb3bf85b2
Author: MovingtoMars <liam@bumblebee.net.nz>
Date: Thu, 28 Jan 2016 19:44:44 +1300
remove accidental printf from float printing
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/std/std.zig b/std/std.zig
@@ -268,7 +268,6 @@ pub fn buf_print_f64(out_buf: []u8, x: f64) -> isize {
const bits = f64_to_bits(x);
if (bits & (1 << 63) != 0) {
- %%stdout.printf("neg\n");
buf[0] = '-';
len += 1;
}