commit 1fc346b4c21aff31645142c1b2a9790ed54d77b3 parent 0c21df7c893092976311dd4dc8f7e88c2cf8b374 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Fri, 30 Apr 2021 11:49:54 +0200 Change warning message when SIMD is not supported Diffstat:
| M | src/atrstm.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/atrstm.c b/src/atrstm.c @@ -201,8 +201,8 @@ atrstm_create atrstm->use_simd = 1; #else log_warn(atrstm, - "Cannot use the SIMD instruction set: " - "AtrSTM was compiled without SIMD support.\n"); + "AtrSTM cannot use the SIMD instruction set: " + "it was compiled without SIMD support.\n"); atrstm->use_simd = 0; #endif }