1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2025-03-04 14:20:19 +01:00

Fix a typo in the comment

This commit is contained in:
q-posev 2024-11-11 20:03:40 +01:00
parent ff8e44d386
commit c9029293d2
2 changed files with 4 additions and 4 deletions

View File

@ -79,9 +79,9 @@ AC_PROG_LN_S
AC_PROG_GREP
AS_CASE([$CC],
[*gcc*], [CFLAGS="$CFLAGS -g -fPIC"],
[*clang*], [CFLAGS="$CFLAGS -g -fPIC"],
[*icc*], [CFLAGS="$CFLAGS -g -fPIC"],
[*gcc*], [CFLAGS="$CFLAGS -fPIC"],
[*clang*], [CFLAGS="$CFLAGS -fPIC"],
[*icc*], [CFLAGS="$CFLAGS -fPIC"],
[])
# Check if `cp -r -n` works, otherwise use `cp -r`

View File

@ -5504,7 +5504,7 @@ trexio_write_determinant_list (trexio_t* const file, const int64_t offset_file,
int32_t occ_num_up = 0;
int32_t occ_num_dn = 0;
/* list_up contains first the up-spin orbitals, then the down-spin
/* list_up contains first the up-spin orbitals, then the down-spin */
int32_t* list_up = (int32_t*) calloc(nup+ndn,sizeof(int32_t));
if (list_up == NULL) {