From 130a272cecb81b5d9a392b5ff9a4daf87454d361 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Mon, 17 Sep 2007 13:08:45 +0000 Subject: [PATCH] Fix some compiler warnings about signed/unsigned comparisons. This commit was SVN r16139. --- ompi/mca/btl/openib/btl_openib_mca.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ompi/mca/btl/openib/btl_openib_mca.c b/ompi/mca/btl/openib/btl_openib_mca.c index ea39b80e9a..cf49cd4aaf 100644 --- a/ompi/mca/btl/openib/btl_openib_mca.c +++ b/ompi/mca/btl/openib/btl_openib_mca.c @@ -480,7 +480,8 @@ static int mca_btl_openib_mca_setup_qps(void) char **queues, **params = NULL; int num_pp_qps = 0, num_srq_qps = 0, qp = 0, ret = OMPI_ERROR; char *default_qps = "P,128,256,128,16:S,1024,256,128,32:S,4096,256,128,32:S,65536,256,128,32"; - uint32_t max_qp_size, max_size_needed, min_freelist_size = 0; + uint32_t max_qp_size, max_size_needed; + int32_t min_freelist_size = 0; reg_string("receive_queues", "Colon-delimited, coma delimited list of receive queues: P,4096,8,6,4:P,32768,8,6,4",