From b3edca19dfca8907bfb43be242db5e90f49d8f3a Mon Sep 17 00:00:00 2001 From: Rolf vandeVaart Date: Tue, 7 Jan 2014 17:30:37 +0000 Subject: [PATCH] Add braces per coding convention and design review. This commit was SVN r30137. --- ompi/mca/common/cuda/common_cuda.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ompi/mca/common/cuda/common_cuda.c b/ompi/mca/common/cuda/common_cuda.c index 7c1d4f8843..66468ac419 100644 --- a/ompi/mca/common/cuda/common_cuda.c +++ b/ompi/mca/common/cuda/common_cuda.c @@ -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 * turned it off, we do not need to continue with any CUDA specific * initialization. Do this after MCA parameter registration. */ - if (!ompi_mpi_cuda_support) + if (!ompi_mpi_cuda_support) { return 1; + } if (0 != (retval = opal_lt_dlinit())) { if (OPAL_ERR_NOT_SUPPORTED == retval) {