Skip to content

Commit ceae062

Browse files
quinnjKristofferC
authored andcommitted
Fix 32-bit
(cherry picked from commit 5332d7d)
1 parent ef7bf2e commit ceae062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/Printf/src/Printf.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ const __BIG_FLOAT_MAX__ = 8192
547547
end
548548

549549
# pointers
550-
fmt(buf, pos, arg, spec::Spec{Pointer}) = fmt(buf, pos, UInt(arg), ptrfmt(spec, arg))
550+
fmt(buf, pos, arg, spec::Spec{Pointer}) = fmt(buf, pos, UInt64(arg), ptrfmt(spec, arg))
551551

552552
# old Printf compat
553553
function fix_dec end

0 commit comments

Comments
 (0)