We need a format to print a string.
This commit was SVN r22132.
Этот коммит содержится в:
родитель
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user