1
1

Let the wrapper compiler complain when it does not find one of the

configuration file.

This commit was SVN r12209.
Этот коммит содержится в:
George Bosilca 2006-10-20 02:29:48 +00:00
родитель 66eb007b22
Коммит b0a03fae4d

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

@ -317,7 +317,9 @@ data_init(const char *appname)
if (NULL == datafile) return OPAL_ERR_TEMP_OUT_OF_RESOURCE; if (NULL == datafile) return OPAL_ERR_TEMP_OUT_OF_RESOURCE;
ret = opal_util_keyval_parse(datafile, data_callback); ret = opal_util_keyval_parse(datafile, data_callback);
if( OPAL_SUCCESS != ret ) {
fprintf(stderr, "Cannot open configuration file %s\n", datafile );
}
free(datafile); free(datafile);
return ret; return ret;