Nicolas Morey
cb3490f2be
- mpip.unwinder.patch - Add-return-value-to-non-void-function.patch - pc_lookup-replace-PTR-with-void.patch - Add configure-fix-compilation-error-for-GCC-14.patch to fix compilation with GCC >= 14 - Add arch-add-generic-arch-using-GCC-builtins.patch to fix compilation on s390. OBS-URL: https://build.opensuse.org/package/show/science:HPC/mpiP?expand=0&rev=48
19 lines
541 B
Diff
19 lines
541 B
Diff
commit 6130c8260cce49846feafc490f84e9ccf299ac15
|
|
Author: Nicolas Morey <nmorey@suse.com>
|
|
Date: Thu Sep 5 14:58:20 2024 +0200
|
|
|
|
Add return value to non void function
|
|
|
|
diff --git testing/mt/mt_common.c testing/mt/mt_common.c
|
|
index ff92d9ef8100..bda59c3aab73 100644
|
|
--- testing/mt/mt_common.c
|
|
+++ testing/mt/mt_common.c
|
|
@@ -310,6 +310,7 @@ void* _mt_common_proxy_thread(void *id_ptr)
|
|
{
|
|
test_thr_data_t *tdata = (test_thr_data_t*)id_ptr;
|
|
tdata->fptr(tdata->tid);
|
|
+ return NULL;
|
|
}
|
|
|
|
void mt_common_exec(mt_common_thrptr_t *workers)
|