1
1

Ensure to pass NULL as the 4th parameter so that we don't end up with

3 IO parameters with blank names.

This commit was SVN r5801.
Этот коммит содержится в:
Jeff Squyres 2005-05-20 20:56:54 +00:00
родитель 1bdacc0c54
Коммит a6dbf68357

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

@ -67,13 +67,13 @@ int mca_io_base_open(void)
if (0 >
mca_base_param_register_int("io", "base", "freelist_initial_size",
"", 16) ||
NULL, 16) ||
0 >
mca_base_param_register_int("io", "base", "freelist_max_size",
"", 64) ||
NULL, 64) ||
0 >
mca_base_param_register_int("io", "base", "freelist_increment",
"", 16)) {
NULL, 16)) {
return OMPI_ERROR;
}