X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..9bfa71c7201013012f9aba67044617f1739bd358:/examples/msg/platform-properties/platform-properties.c?ds=sidebyside diff --git a/examples/msg/platform-properties/platform-properties.c b/examples/msg/platform-properties/platform-properties.c index 375b03b72c..06db78b6ee 100644 --- a/examples/msg/platform-properties/platform-properties.c +++ b/examples/msg/platform-properties/platform-properties.c @@ -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 */