X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6760cb07d6b57be16928d95339d71e57c4e24f36..cf57fb58889894670e2594d2e3b6a213d8fd6089:/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);