From 725a0d2100d48d16b59a959562b990d54c2e0823 Mon Sep 17 00:00:00 2001 From: Edgar Gabriel Date: Thu, 31 Mar 2011 20:05:45 +0000 Subject: [PATCH] fix a formatting issue This commit was SVN r24596. --- ompi/communicator/comm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ompi/communicator/comm.c b/ompi/communicator/comm.c index 88097b6fec..233d7c810c 100644 --- a/ompi/communicator/comm.c +++ b/ompi/communicator/comm.c @@ -9,7 +9,7 @@ * University of Stuttgart. All rights reserved. * Copyright (c) 2004-2005 The Regents of the University of California. * All rights reserved. - * Copyright (c) 2007-2010 University of Houston. All rights reserved. + * Copyright (c) 2007-2011 University of Houston. All rights reserved. * Copyright (c) 2007-2008 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved. * $COPYRIGHT$ @@ -145,7 +145,8 @@ int ompi_comm_set ( ompi_communicator_t **ncomm, /* Check how many different jobids are represented in this communicator. Necessary for the disconnect of dynamic communicators. */ - if ( local_size != 0 ) { + + if ( 0 < local_size ) { ompi_dpm.mark_dyncomm (newcomm); }