Skip to content

Commit

Permalink
Update test_zgemv_t.c
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored May 13, 2024
1 parent 172bd00 commit 744db84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utest/test_extensions/test_zgemv_t.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static void matrix_vector_product(blasint n, blasint m, blasint lda, blasint inc
for (i = 0; i < n * inc_x; i += inc_x)
{
#ifdef RETURN_BY_STACK
BLASFUNC(zdotu)(result,&lda, a_ptr, &one, x_ptr, &inc_x);
BLASFUNC(zdotu)(&result, &lda, a_ptr, &one, x_ptr, &inc_x);
#else
result = BLASFUNC(zdotu)(&lda, a_ptr, &one, x_ptr, &inc_x);
#endif
Expand Down

0 comments on commit 744db84

Please sign in to comment.