Skip to content

Commit 991cf2f

Browse files
committed
Fix #5951
1 parent 7d056d2 commit 991cf2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/io.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ end
381381

382382
## low-level calls ##
383383

384-
write(s::IOStream, b::Uint8) = int(ccall(:jl_putc, Int32, (Uint8, Ptr{Void}), b, s.ios))
384+
write(s::IOStream, b::Uint8) = int(ccall(:ios_putc, Int32, (Uint8, Ptr{Void}), b, s.ios))
385385

386386
function write{T}(s::IOStream, a::Array{T})
387387
if isbits(T)

0 commit comments

Comments
 (0)