commit 2b8771d0f6aa76d020afa5f78c2638eb3fafa71c
parent 46a1b459a121179aa6d7dc045e332a320883cf22
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 29 Nov 2021 15:53:10 +0100
Fix test_sdis_solve_probe2 when MPI is disabled
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test_sdis_solve_probe2.c b/src/test_sdis_solve_probe2.c
@@ -184,7 +184,7 @@ main(int argc, char** argv)
#ifndef SDIS_ENABLE_MPI
OK(sdis_device_create(&dev_args, &dev));
- is_master_process == 1;
+ is_master_process = 1;
#else
CHK(MPI_Init_thread(&argc, &argv, MPI_THREAD_SERIALIZED, &mpi_thread_support)
== MPI_SUCCESS);