1
1

Add spaces in the help message

This commit was SVN r6708.
Этот коммит содержится в:
Jeff Squyres 2005-08-02 17:47:53 +00:00
родитель d827253e7f
Коммит 853d2fb980

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

@ -532,7 +532,7 @@ char *opal_cmd_line_get_usage_msg(opal_cmd_line_t *cmd)
}
strcat(line, " ");
for (i = 0; i < option->clo_num_params; ++i) {
snprintf(temp, len, "<arg%d>", i);
snprintf(temp, len, "<arg%d> ", i);
strcat(line, temp);
}
if (option->clo_num_params > 0) {