Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use word 'bytes' instead of 'octets'.
[simgrid.git] / teshsuite / msg / storage / storage.c
index 8512d6e..1e5e235 100644 (file)
@@ -40,8 +40,8 @@ void storage_info(msg_host_t host){
     size_t free_size = MSG_storage_get_free_size(mount_name);
     size_t used_size = MSG_storage_get_used_size(mount_name);
 
-    XBT_INFO("\t\tFree size: %zu octets", free_size);
-    XBT_INFO("\t\tUsed size: %zu octets", used_size);
+    XBT_INFO("\t\tFree size: %zu bytes", free_size);
+    XBT_INFO("\t\tUsed size: %zu bytes", used_size);
 
     storage = MSG_storage_get_by_name(storage_name);
     display_storage_properties(storage);