]> AND Public Git Repository - simgrid.git/blobdiff - examples/msg/actions/actions.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : fix platform file path in tesh examples
[simgrid.git] / examples / msg / actions / actions.c
index 25baa9a7b38d33b0bfc4bd4245fda4d980de10db..0e13b12b5209e5002267f5761200bee0836889e1 100644 (file)
@@ -437,8 +437,8 @@ static void action_comm_size(const char *const *action)
 
 static void action_compute(const char *const *action)
 {
-  const char *amout = action[2];
-  msg_task_t task = MSG_task_create("task", parse_double(amout), 0, NULL);
+  const char *amount = action[2];
+  msg_task_t task = MSG_task_create("task", parse_double(amount), 0, NULL);
   double clock = MSG_get_clock();
 
   ACT_DEBUG("Entering %s", NAME);