Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix dead assignments.
[simgrid.git] / teshsuite / smpi / mpich3-test / group / groupcreate.c
index c8952d8..5e3a2f3 100644 (file)
@@ -41,7 +41,7 @@ int main( int argc, char **argv )
        else {
            /* Check that the group was created (and that any errors were
               caught) */
-           rc = MPI_Group_size( group_array[i], &group_size );
+           MPI_Group_size( group_array[i], &group_size );
            if (group_size != size) {
                fprintf( stderr, "Group number %d not correct (size = %d)\n", 
                         i, size );