Skip to content

Commit

Permalink
Fix 32-bit
Browse files Browse the repository at this point in the history
(cherry picked from commit 5332d7d)
  • Loading branch information
quinnj authored and KristofferC committed Apr 4, 2021
1 parent 5bd2972 commit 281acc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/Printf/src/Printf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ const __BIG_FLOAT_MAX__ = 8192
end

# pointers
fmt(buf, pos, arg, spec::Spec{Pointer}) = fmt(buf, pos, UInt(arg), ptrfmt(spec, arg))
fmt(buf, pos, arg, spec::Spec{Pointer}) = fmt(buf, pos, UInt64(arg), ptrfmt(spec, arg))

# old Printf compat
function fix_dec end
Expand Down

0 comments on commit 281acc3

Please sign in to comment.