1
1

Add braces per coding convention and design review.

This commit was SVN r30137.
Этот коммит содержится в:
Rolf vandeVaart 2014-01-07 17:30:37 +00:00
родитель cbc9ee5894
Коммит b3edca19df

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

@ -298,8 +298,9 @@ int mca_common_cuda_stage_one_init(void)
/* First check if the support is enabled. In the case that the user has /* First check if the support is enabled. In the case that the user has
* turned it off, we do not need to continue with any CUDA specific * turned it off, we do not need to continue with any CUDA specific
* initialization. Do this after MCA parameter registration. */ * initialization. Do this after MCA parameter registration. */
if (!ompi_mpi_cuda_support) if (!ompi_mpi_cuda_support) {
return 1; return 1;
}
if (0 != (retval = opal_lt_dlinit())) { if (0 != (retval = opal_lt_dlinit())) {
if (OPAL_ERR_NOT_SUPPORTED == retval) { if (OPAL_ERR_NOT_SUPPORTED == retval) {