1
1

opal/util: fix (again) incorrect type casting in opal_path_df

this fixes previous commit open-mpi/ompi@a439afce5b
Этот коммит содержится в:
Gilles Gouaillardet 2016-08-24 12:50:15 +09:00
родитель b12e43fc03
Коммит 2eec8970ff

Просмотреть файл

@ -704,7 +704,7 @@ opal_path_df(const char *path,
/* now set the amount of free space available on path */
/* sometimes buf.f_bavail is negative */
*out_avail = buf.f_bsize * ((long)buf.f_bavail < 0 ? 0 : buf.f_bavail);
*out_avail = (uint64_t)buf.f_bsize * (uint64_t)(buf.f_bavail < 0 ? 0 : buf.f_bavail);
OPAL_OUTPUT_VERBOSE((10, 2, "opal_path_df: stat(v)fs states "
"path: %s has %"PRIu64 " B of free space.",