Francois Gouget : msvcp140_1: Remove __cdecl on static functions where not needed.

Alexandre Julliard julliard at winehq.org
Mon Sep 6 16:15:04 CDT 2021


Module: wine
Branch: master
Commit: ec6ce2ce53b91bbb5bc8eaaec01c7f2fa6f892eb
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ec6ce2ce53b91bbb5bc8eaaec01c7f2fa6f892eb

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Sep  3 11:50:39 2021 +0200

msvcp140_1: Remove __cdecl on static functions where not needed.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msvcp140_1/msvcp140_1.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcp140_1/msvcp140_1.c b/dlls/msvcp140_1/msvcp140_1.c
index 823adedf3ac..c6a6ff19f13 100644
--- a/dlls/msvcp140_1/msvcp140_1.c
+++ b/dlls/msvcp140_1/msvcp140_1.c
@@ -64,7 +64,7 @@ void __cdecl MSVCRT_operator_delete(void *mem)
     free(mem);
 }
 
-static void* __cdecl MSVCRT_operator_new_aligned(size_t size, size_t alignment)
+static void* MSVCRT_operator_new_aligned(size_t size, size_t alignment)
 {
     void *retval;
     int freed;
@@ -85,7 +85,7 @@ static void* __cdecl MSVCRT_operator_new_aligned(size_t size, size_t alignment)
     return NULL;
 }
 
-static void __cdecl MSVCRT_operator_delete_aligned(void *mem, size_t alignment)
+static void MSVCRT_operator_delete_aligned(void *mem, size_t alignment)
 {
     _aligned_free(mem);
 }




More information about the wine-cvs mailing list