1
1

Fix off-by-one error in trimming space from the right of strings

This commit was SVN r24724.
Этот коммит содержится в:
Jeff Squyres 2011-05-22 12:21:14 +00:00
родитель 661f508e62
Коммит 595dd60546

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

@ -105,7 +105,7 @@ void ompi_info_out(const char *pretty_message, const char *plain_message, const
while (isspace(v[i]) && i > 0) {
--i;
}
v[i] = '\0';
v[i + 1] = '\0';
}
if (ompi_info_pretty && NULL != pretty_message) {