1
1

common_verbs: fix bad opal_output args

Spotted by Reese Faucette <rfaucett@cisco.com>.

cmr=v1.7.3

This commit was SVN r29267.
Этот коммит содержится в:
Dave Goodell 2013-09-26 21:59:00 +00:00
родитель 0b8fc13299
Коммит 2c7975eb86

Просмотреть файл

@ -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;
}