Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove free of return set in user code for these tests too.
[simgrid.git] / teshsuite / simdag / incomplete / incomplete.c
index 267614a..4f25f38 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2012, 2014. The SimGrid Team.
+/* Copyright (c) 2007-2012, 2014-2015. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -26,7 +26,6 @@ int main(int argc, char **argv)
 
   SD_task_t taskInit;
   SD_task_t taskA, taskB, taskC, taskD;
-  xbt_dynar_t ret;
 
   const SD_workstation_t *workstation;
 
@@ -64,8 +63,7 @@ int main(int argc, char **argv)
                      &communication_amount1, -1.0);
 
 
-  ret = SD_simulate(-1.);
-  xbt_dynar_free(&ret);
+  SD_simulate(-1.);
   SD_task_destroy(taskA);
   SD_task_destroy(taskB);
   SD_task_destroy(taskC);