Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
don't pass the free_f parameter to MSG_*_set_property_value()
[simgrid.git] / examples / msg / platform-properties / platform-properties.c
index 375b03b..06db78b 100644 (file)
@@ -32,7 +32,7 @@ static void test_host(const char*hostname)
   XBT_INFO("   Property: %s old value: %s", exist, value);
 
   XBT_INFO("== Trying to modify a host property");
-  MSG_host_set_property_value(thehost, exist, xbt_strdup("250"), xbt_free_f);
+  MSG_host_set_property_value(thehost, exist, xbt_strdup("250"));
 
   /* Test if we have changed the value */
   value = MSG_host_get_property_value(thehost, exist);
@@ -41,7 +41,7 @@ static void test_host(const char*hostname)
   XBT_INFO("   Property: %s old value: %s", exist, value);
 
   /* Restore the value for the next test */
-  MSG_host_set_property_value(thehost, exist, xbt_strdup("180"), xbt_free_f);
+  MSG_host_set_property_value(thehost, exist, xbt_strdup("180"));
 }
 
 static int alice(int argc, char *argv[]) { /* Dump what we have on the current host */