fix function typecasts

This commit is contained in:
Martin Kroeker
2021-12-21 18:47:35 +01:00
committed by GitHub
parent d1ee6ff73f
commit 64365c919e
4 changed files with 5 additions and 5 deletions

View File

@@ -115,7 +115,7 @@ void CNAME(blasint n, FLOAT alpha, FLOAT *x, blasint incx, FLOAT *y, blasint inc
#endif
blas_level1_thread(mode, n, 0, 0, &alpha,
x, incx, y, incy, NULL, 0, (void *)AXPYU_K, nthreads);
x, incx, y, incy, NULL, 0, (int (*)(void))AXPYU_K, nthreads);
}
#endif