From 1dc1c0f192a33d06c5115443a9a0284b25d1c26c Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 26 Sep 2023 16:10:37 +0200 Subject: [PATCH] Fixed warning with Clang --- org/qmckl_jastrow_champ.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/qmckl_jastrow_champ.org b/org/qmckl_jastrow_champ.org index c76d59c5..ef5045d1 100644 --- a/org/qmckl_jastrow_champ.org +++ b/org/qmckl_jastrow_champ.org @@ -794,7 +794,7 @@ qmckl_set_jastrow_champ_c_vector(qmckl_context context, if (size_max < dim_c_vector*type_nucl_num) { char msg[256]; - sprintf(msg, "Array too small. Expected dim_c_vector*type_nucl_num = %lld", + sprintf(msg, "Array too small. Expected dim_c_vector*type_nucl_num = %ld", (long) dim_c_vector*type_nucl_num ); return qmckl_failwith( context, QMCKL_INVALID_ARG_3,