From: Pierre Veyre Date: Tue, 1 Oct 2013 16:22:45 +0000 (+0200) Subject: Introduce sg_storage_size_t type X-Git-Tag: v3_9_90~57 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b784c77ac5599c578f0ff00d6102222b286b0833?ds=sidebyside Introduce sg_storage_size_t type --- diff --git a/teshsuite/msg/storage/storage.c b/teshsuite/msg/storage/storage.c index 1e5e235692..b4a3a54e61 100644 --- a/teshsuite/msg/storage/storage.c +++ b/teshsuite/msg/storage/storage.c @@ -37,8 +37,8 @@ void storage_info(msg_host_t host){ { XBT_INFO("\tStorage mount name: %s", mount_name); - size_t free_size = MSG_storage_get_free_size(mount_name); - size_t used_size = MSG_storage_get_used_size(mount_name); + sg_storage_size_t free_size = MSG_storage_get_free_size(mount_name); + sg_storage_size_t used_size = MSG_storage_get_used_size(mount_name); XBT_INFO("\t\tFree size: %zu bytes", free_size); XBT_INFO("\t\tUsed size: %zu bytes", used_size);