X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f5e8daaa6e9f74521068aa75837200bcd182ea6..cc01c6a871dbbfd0cc84e26eb9f94aeb539e613e:/examples/gras/mmrpc/mmrpc_common.c diff --git a/examples/gras/mmrpc/mmrpc_common.c b/examples/gras/mmrpc/mmrpc_common.c index 5b0beaf586..a4884702ef 100644 --- a/examples/gras/mmrpc/mmrpc_common.c +++ b/examples/gras/mmrpc/mmrpc_common.c @@ -16,9 +16,10 @@ void mmrpc_register_messages(void) { gras_datadesc_type_t matrix_type, request_type; - matrix_type = gras_datadesc_matrix(gras_datadesc_by_name("double"), NULL); + matrix_type = + gras_datadesc_matrix(gras_datadesc_by_name("double"), NULL); request_type = - gras_datadesc_array_fixed("s_matrix_t(double)[2]", matrix_type, 2); + gras_datadesc_array_fixed("s_matrix_t(double)[2]", matrix_type, 2); gras_msgtype_declare("answer", matrix_type); gras_msgtype_declare("request", request_type);