Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Introduce sg_storage_size_t type
[simgrid.git] / teshsuite / msg / storage / storage.c
index 1e5e235..b4a3a54 100644 (file)
@@ -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);