Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use the right free function.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 22 Feb 2020 09:54:32 +0000 (10:54 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 22 Feb 2020 13:09:14 +0000 (14:09 +0100)
teshsuite/s4u/evaluate-parse-time/evaluate-parse-time.cpp

index 2eb12c6..cebfa6c 100644 (file)
@@ -28,6 +28,6 @@ int main(int argc, char** argv)
     xbt_os_sleep(atoi(argv[2]));
   }
 
-  free(timer);
+  xbt_os_timer_free(timer);
   return 0;
 }