From 2c7975eb861ee9e5ee0bcfa8affb88a74241a570 Mon Sep 17 00:00:00 2001 From: Dave Goodell Date: Thu, 26 Sep 2013 21:59:00 +0000 Subject: [PATCH] common_verbs: fix bad opal_output args Spotted by Reese Faucette . cmr=v1.7.3 This commit was SVN r29267. --- ompi/mca/common/verbs/common_verbs_devlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/common/verbs/common_verbs_devlist.c b/ompi/mca/common/verbs/common_verbs_devlist.c index 2e72043f9d..205b6114f5 100644 --- a/ompi/mca/common/verbs/common_verbs_devlist.c +++ b/ompi/mca/common/verbs/common_verbs_devlist.c @@ -71,7 +71,7 @@ struct ibv_device **ompi_ibv_get_device_list(int *num_devs) ib_devs = (struct ibv_device**)malloc(*num_devs * sizeof(struct ibv_dev*)); if (NULL == ib_devs) { *num_devs = 0; - opal_output("Failed malloc: %s:%d", __FILE__, __LINE__); + opal_output(0, "Failed malloc: %s:%d", __FILE__, __LINE__); return NULL; }