From 1229dd3ed6afe2299a1fb555fda4981ae27972aa Mon Sep 17 00:00:00 2001 From: Rolf vandeVaart Date: Wed, 8 Jul 2015 11:46:52 -0400 Subject: [PATCH] Fix errors from previous commit --- ompi/mpiext/cuda/c/mpiext_cuda.c | 2 +- ompi/mpiext/cuda/c/mpiext_cuda_c.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ompi/mpiext/cuda/c/mpiext_cuda.c b/ompi/mpiext/cuda/c/mpiext_cuda.c index 22b4a27253..4510e5fc51 100644 --- a/ompi/mpiext/cuda/c/mpiext_cuda.c +++ b/ompi/mpiext/cuda/c/mpiext_cuda.c @@ -27,5 +27,5 @@ support. We may expand on this API to return more features in the future. */ int MPIX_Query_cuda_support(void) { - return OMPI_SUCCESS; + return OPAL_SUCCESS; } diff --git a/ompi/mpiext/cuda/c/mpiext_cuda_c.h b/ompi/mpiext/cuda/c/mpiext_cuda_c.h index 869dcc63e0..00fd6216f8 100644 --- a/ompi/mpiext/cuda/c/mpiext_cuda_c.h +++ b/ompi/mpiext/cuda/c/mpiext_cuda_c.h @@ -13,4 +13,4 @@ */ #define MPIX_CUDA_AWARE_SUPPORT 1 -OMPI_DECLSPEC int MPIx_CUDA_SUPPORT(void); +OMPI_DECLSPEC int MPIX_Query_cuda_support(void);