@@ -38,21 +38,21 @@ function ssyr(uplo, n, a, x, stx, A, lda)
3838end
3939
4040function dsyr (uplo, n, a, x, stx, A, lda)
41- return ccall ((@blasfunc (ssyr_ ), libblastrampoline), Cvoid,
41+ return ccall ((@blasfunc (dsyr_ ), libblastrampoline), Cvoid,
4242 (Ref{UInt8}, Ref{BlasInt}, Ref{Float64}, Ptr{Float64},
4343 Ref{BlasInt}, Ptr{Float64}, Ref{BlasInt}, Clong),
4444 uplo, n, a, x, stx, A, lda, 1 )
4545end
4646
4747function csyr (uplo, n, a, x, stx, A, lda)
48- return ccall ((@blasfunc (ssyr_ ), libblastrampoline), Cvoid,
48+ return ccall ((@blasfunc (csyr_ ), libblastrampoline), Cvoid,
4949 (Ref{UInt8}, Ref{BlasInt}, Ref{ComplexF32}, Ptr{ComplexF32},
5050 Ref{BlasInt}, Ptr{ComplexF32}, Ref{BlasInt}, Clong),
5151 uplo, n, a, x, stx, A, lda, 1 )
5252end
5353
5454function zsyr (uplo, n, a, x, stx, A, lda)
55- return ccall ((@blasfunc (ssyr_ ), libblastrampoline), Cvoid,
55+ return ccall ((@blasfunc (zsyr_ ), libblastrampoline), Cvoid,
5656 (Ref{UInt8}, Ref{BlasInt}, Ref{ComplexF64}, Ptr{ComplexF64},
5757 Ref{BlasInt}, Ptr{ComplexF64}, Ref{BlasInt}, Clong),
5858 uplo, n, a, x, stx, A, lda, 1 )
0 commit comments