Skip to content

Commit 0bafb5a

Browse files
authored
Apply suggestion from @blegat
1 parent 839b3c7 commit 0bafb5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decompression.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ function decompress!(
717717
uplo::Symbol=:F,
718718
) where {R<:Real}
719719
check_compatible_pattern(A, result.ag, uplo)
720-
decompress_csc!(A.colptr, nonzeros(A), B, result, uplo)
720+
decompress_csc!(nonzeros(A), A.colptr, B, result, uplo)
721721
return A
722722
end
723723

0 commit comments

Comments
 (0)