1
1

Fixups for pointer_array->argv changes

This commit was SVN r6302.
Этот коммит содержится в:
Jeff Squyres 2005-07-02 16:02:26 +00:00
родитель 76035790ee
Коммит f9fcb77f63

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

@ -65,15 +65,15 @@ int ompi_show_help(const char *filename, const char *topic,
ompi_show_help_finish_parsing();
fclose(ompi_show_help_yyin);
if (OMPI_SUCCESS != ret) {
destroy_message(&array);
destroy_message(array);
return ret;
}
va_start(arglist, want_error_header);
output(want_error_header, &array, filename, topic, arglist);
output(want_error_header, array, filename, topic, arglist);
va_end(arglist);
destroy_message(&array);
destroy_message(array);
return ret;
}