Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Follow coding style for sg_host_{get,set}_data.
[simgrid.git] / src / msg / msg_legacy.cpp
index b3f9c70..aa909f4 100644 (file)
@@ -331,11 +331,11 @@ const char* MSG_host_get_name(const_sg_host_t host)
 }
 void* MSG_host_get_data(const_sg_host_t host)
 {
-  return sg_host_data(host);
+  return sg_host_get_data(host);
 }
 void MSG_host_set_data(sg_host_t host, void* data)
 {
-  return sg_host_data_set(host, data);
+  return sg_host_set_data(host, data);
 }
 xbt_dict_t MSG_host_get_mounted_storage_list(sg_host_t host) // XBT_ATTRIB_DEPRECATED_v330
 {