Skip to content

Commit

Permalink
fix missing io argument to println in umfpack
Browse files Browse the repository at this point in the history
this should fix #12837
  • Loading branch information
JeffBezanson committed Sep 17, 2015
1 parent 7427de6 commit 06e6b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/sparse/umfpack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ lufact(A::SparseMatrixCSC) = lufact(float(A))

function show(io::IO, f::UmfpackLU)
println(io, "UMFPACK LU Factorization of a $(f.m)-by-$(f.n) sparse matrix")
f.numeric != C_NULL && println(f.numeric)
f.numeric != C_NULL && println(io, f.numeric)
end

## Wrappers for UMFPACK functions
Expand Down

0 comments on commit 06e6b37

Please sign in to comment.