1
1

We need a format to print a string.

This commit was SVN r22132.
Этот коммит содержится в:
George Bosilca 2009-10-23 02:43:13 +00:00
родитель 4acfbe6554
Коммит db010ebc6d

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

@ -149,13 +149,13 @@ static void out(char *str, char *arg)
if (NULL != arg) {
opal_output(0, str, arg);
} else {
opal_output(0, str);
opal_output(0, "%s", str);
}
} else {
if (NULL != arg) {
fprintf(stderr, str, arg);
} else {
fprintf(stderr, str);
fprintf(stderr, "%s", str);
}
}
}