diff --git a/sycl/test-e2e/ESIMD/regression/dgetrf_8x8.cpp b/sycl/test-e2e/ESIMD/regression/dgetrf_8x8.cpp index 5a8cfa00d5ee8..0610e2c80510a 100644 --- a/sycl/test-e2e/ESIMD/regression/dgetrf_8x8.cpp +++ b/sycl/test-e2e/ESIMD/regression/dgetrf_8x8.cpp @@ -11,6 +11,7 @@ // // Reduced version of dgetrf.cpp - M = 8, N = 8, single batch. // +#include #include #include #include @@ -218,7 +219,9 @@ static int dgetrfnp_batch_strided_check(int64_t m, int64_t n, double *a_in, double res = 0.0, nrm = 0.0, ulp = *(double *)prec_b; double *w = (double *)malloc(sizeof(double) * MAX(m * n, 1)); - sprintf(label, "m=%ld, n=%ld, lda=%ld, batch=%ld", m, n, lda, batch); + sprintf(label, + "m=%" PRId64 ", n=%" PRId64 ", lda=%" PRId64 ", batch=%" PRId64, m, n, + lda, batch); for (k = 0; k < batch; k++) { /* info == 0 */