https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f672262b9aea75b4ad43b4b259a1984fcf9a53b6
commit f672262b9aea75b4ad43b4b259a1984fcf9a53b6 Author: winesync <[email protected]> AuthorDate: Fri Sep 11 15:55:46 2020 +0200 Commit: Jérôme Gardou <[email protected]> CommitDate: Wed Sep 16 10:35:40 2020 +0200 [WINESYNC] dbghelp: Make minidump_add_memory64_block() static. Signed-off-by: Francois Gouget <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id 5651c9dd2819e67ff8aba698eed8d77abe4abcb8 by Francois Gouget <[email protected]> --- dll/win32/dbghelp/minidump.c | 2 +- sdk/tools/winesync/dbghelp.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/win32/dbghelp/minidump.c b/dll/win32/dbghelp/minidump.c index 4e2c7641c9d..2007353098f 100644 --- a/dll/win32/dbghelp/minidump.c +++ b/dll/win32/dbghelp/minidump.c @@ -294,7 +294,7 @@ static BOOL fetch_macho_module_info_cb(const WCHAR* name, unsigned long base, return TRUE; } -void minidump_add_memory64_block(struct dump_context* dc, ULONG64 base, ULONG64 size) +static void minidump_add_memory64_block(struct dump_context* dc, ULONG64 base, ULONG64 size) { if (!dc->mem64) { diff --git a/sdk/tools/winesync/dbghelp.cfg b/sdk/tools/winesync/dbghelp.cfg index 1d15e66a919..9d43f02472a 100644 --- a/sdk/tools/winesync/dbghelp.cfg +++ b/sdk/tools/winesync/dbghelp.cfg @@ -4,4 +4,4 @@ files: include/dbghelp.h: sdk/include/psdk/dbghelp.h include/wine/mscvpdb.h: sdk/include/reactos/wine/mscvpdb.h tags: - wine: ab71398eb09d24f9f99b6266cb3005faea7a448f + wine: 5651c9dd2819e67ff8aba698eed8d77abe4abcb8
