Skip to content

Commit

Permalink
Fixed warning with Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
scemama committed Sep 26, 2023
1 parent 233edee commit 1dc1c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org/qmckl_jastrow_champ.org
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 1dc1c0f

Please sign in to comment.