Skip to content
Snippets Groups Projects
Commit f4713532 authored by Rémi Dehenne's avatar Rémi Dehenne
Browse files

Fix MPC + PMIx compilation error

parent 7495d9b1
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,10 @@ checksums = [ ...@@ -16,7 +16,10 @@ checksums = [
'd2610173cf0bf8f64985bc45602c133ca0beaff78c8bea7fe35fda771ceae5ca', 'd2610173cf0bf8f64985bc45602c133ca0beaff78c8bea7fe35fda771ceae5ca',
] ]
patches = ['nvdimm.patch'] patches = [
'nvdimm.patch',
'pmix.patch',
]
builddependencies = [ builddependencies = [
('CMake', '3.23.1'), ('CMake', '3.23.1'),
......
From fc4b775594984ecac16ec56074a0636961ecb3f2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20Dehenne?= <remi.dehenne@cea.fr>
Date: Tue, 25 Jul 2023 13:02:19 +0200
Subject: [PATCH] LAUNCH: Fix PMIx compilation error
---
src/MPC_Launch/src/pmi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/MPC_Launch/src/pmi.c b/src/MPC_Launch/src/pmi.c
index 3970bd598..08916cd46 100644
--- a/src/MPC_Launch/src/pmi.c
+++ b/src/MPC_Launch/src/pmi.c
@@ -1004,7 +1004,7 @@ int mpc_launch_pmi_get( char *value, size_t size, char *key, int remote)
assume(val->type == PMIX_STRING);
strcpy(value, val->data.string);
PMIX_VALUE_RELEASE(val);
- PMIX_PROC_DESTRUCT(proc);
+ PMIX_PROC_DESTRUCT(&proc);
PMI_RETURN( rc );
#else
UNUSED(remote);
--
2.34.1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment