Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add a solve() fun pointer to maxmin datatype (+minor cleanups)
[simgrid.git] / examples / msg / async-wait / async-wait.c
index a25df32..cb851d8 100644 (file)
@@ -38,7 +38,7 @@ static int sender(int argc, char *argv[])
     if (sleep_test_time > 0) { /* - "test_time" is set to 0, wait on @ref MSG_comm_wait */
       while (MSG_comm_test(comm) == 0) { /* - Call @ref MSG_comm_test every "test_time" otherwise */
         MSG_process_sleep(sleep_test_time);
-      };
+      }
     } else {
       MSG_comm_wait(comm, -1);
     }