From a4224860a498eb870280130e00fe6f376b7a2e6b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 13 Sep 2020 22:00:12 +0200 Subject: patch 8.2.1676: compiler warnings for function typecast Problem: Compiler warnings for function typecast. Solution: Add an intermediate cast to "void *". --- src/os_unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/os_unix.c') diff --git a/src/os_unix.c b/src/os_unix.c index b58138bf0..6f7a9a4cf 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -7434,7 +7434,7 @@ mch_libcall( ))) { if (string_result == NULL) - retval_int = ((STRPROCINT)ProcAdd)(argstring); + retval_int = ((STRPROCINT)(void *)ProcAdd)(argstring); else retval_str = (ProcAdd)(argstring); } @@ -7456,7 +7456,7 @@ mch_libcall( ))) { if (string_result == NULL) - retval_int = ((INTPROCINT)ProcAddI)(argint); + retval_int = ((INTPROCINT)(void *)ProcAddI)(argint); else retval_str = (ProcAddI)(argint); } -- cgit v1.2.1