1
1

While doing cleanup remove pending warnings.

This commit was SVN r25095.
Этот коммит содержится в:
George Bosilca 2011-08-26 23:38:06 +00:00
родитель fc1184c41f
Коммит 67ec5a0556
2 изменённых файлов: 5 добавлений и 5 удалений

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

@ -307,8 +307,8 @@ static int update_state(orte_jobid_t job,
OPAL_OUTPUT_VERBOSE((5, orte_errmgr_base.output,
"%s errmgr:orted not exiting, num_routes() == %d, num children == %d",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
orte_routed.num_routes(),
opal_list_get_size(&orte_local_children)));
(int)orte_routed.num_routes(),
(int)opal_list_get_size(&orte_local_children)));
}
}

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

@ -103,7 +103,7 @@ static void myhelplog(orte_notifier_base_severity_t severity, int errcode,
}
/* go ahead and output it */
syslog(severity, output);
syslog(severity, output, NULL);
free(output);
}
@ -114,7 +114,7 @@ static void mypeerlog(orte_notifier_base_severity_t severity, int errcode,
char *buf = orte_notifier_base_peer_log(errcode, peer_proc, msg, ap);
if (NULL != buf) {
syslog(severity, buf);
syslog(severity, buf, NULL);
free(buf);
}
}
@ -122,6 +122,6 @@ static void mypeerlog(orte_notifier_base_severity_t severity, int errcode,
static void myeventlog(const char *msg)
{
/* If there was a message, output it */
syslog(LOG_LOCAL0 | LOG_NOTICE, msg);
syslog(LOG_LOCAL0 | LOG_NOTICE, msg, NULL);
}