Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make it compile with -Werror by forcing a type casting
authorMartin Quinson <martin.quinson@loria.fr>
Mon, 9 Jan 2012 15:18:59 +0000 (16:18 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Mon, 9 Jan 2012 15:18:59 +0000 (16:18 +0100)
src/smpi/smpi_base.c

index 91cb599..1751f25 100644 (file)
@@ -115,7 +115,7 @@ void smpi_mpi_start(MPI_Request request)
                SIMIX_req_comm_isend(mailbox, request->size, -1.0,
                                    request->buf, request->size,
                                    &match_send,
-                                   &smpi_mpi_request_free, // how to free the userdata if a detached send fails
+                                   (void (*)(void *))&smpi_mpi_request_free, // how to free the userdata if a detached send fails
                                    request,
                                    // detach if msg size < eager/rdv switch limit
                                    detached);