Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sed -i -e 's/\t/ /g' [sources] Please people, stop using tabs
[simgrid.git] / examples / simdag / properties / sd_prop.c
index 4af031c..c03f7d0 100644 (file)
@@ -30,8 +30,8 @@ int main(int argc, char **argv)
   /* SD initialization */
   SD_init(&argc, argv);
   xbt_assert(argc > 1,
-            "Usage: %s platform_file\n\tExample: %s ../two_hosts.xml", 
-            argv[0], argv[0]);
+       "Usage: %s platform_file\n\tExample: %s ../two_hosts.xml", 
+       argv[0], argv[0]);
 
   SD_create_environment(argv[1]);
 
@@ -44,7 +44,7 @@ int main(int argc, char **argv)
 
   /* The host properties can be retrieved from all interfaces */
 
-  XBT_INFO("Property list for workstation %s", name1);
+  XBT_INFO("Property list for host %s", name1);
   /* Get the property list of the workstation 1 */
   props = sg_host_get_properties(w1);
 
@@ -63,7 +63,7 @@ int main(int argc, char **argv)
   XBT_INFO("\tProperty: %s has value: %s", noexist, value?value:"Undefined (NULL)");
 
 
-  XBT_INFO("Property list for workstation %s", name2);
+  XBT_INFO("Property list for host %s", name2);
   /* Get the property list of the workstation 2 */
   props = sg_host_get_properties(w2);
   cursor = NULL;