Skip to content

Commit

Permalink
Fix 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Apr 2, 2021
1 parent 0d9163b commit 5332d7d
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 5332d7d

Please sign in to comment.