https://git.reactos.org/?p=reactos.git;a=commitdiff;h=eaf24cc380a66bf8c1cb2439da225b351e0b482d

commit eaf24cc380a66bf8c1cb2439da225b351e0b482d
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Wed Aug 28 16:34:33 2019 +0200
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Sun Sep 8 16:59:57 2019 +0200

    [DLLEXPORT_TEST] Fix duplicated export on non-x86 architectures
---
 modules/rostests/tests/dllexport/dllexport_test_dll1.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/rostests/tests/dllexport/dllexport_test_dll1.spec 
b/modules/rostests/tests/dllexport/dllexport_test_dll1.spec
index 2a8d06cd340..dfe635f1aeb 100644
--- a/modules/rostests/tests/dllexport/dllexport_test_dll1.spec
+++ b/modules/rostests/tests/dllexport/dllexport_test_dll1.spec
@@ -12,8 +12,8 @@
  @ stdcall StdcallFunc1(ptr)
 
 # Decorated export of a stdcall function
- @ stdcall _StdcallFunc1@4(ptr)
- @ stdcall -arch=i386 _DecoratedStdcallFunc1@4(ptr)
+ @ stdcall -arch=i386 _StdcallFunc1@4(ptr) # Reuse function name on x86 only!
+ @ stdcall _DecoratedStdcallFunc1@4(ptr)
 
 # Redirected stdcall function
  @ stdcall StdcallFunc2(ptr) StdcallFunc1

Reply via email to