https://git.reactos.org/?p=reactos.git;a=commitdiff;h=84531c319dd974d3181b79f58401380e9315afa5
commit 84531c319dd974d3181b79f58401380e9315afa5 Author: winesync <[email protected]> AuthorDate: Fri Sep 11 15:55:28 2020 +0200 Commit: Jérôme Gardou <[email protected]> CommitDate: Wed Sep 16 10:35:40 2020 +0200 [WINESYNC] dbghelp: Make symt_get_best_at() static. Signed-off-by: Francois Gouget <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id edcff4046c5aa70c047c1a523a93a5cc5782fb44 by Francois Gouget <[email protected]> --- dll/win32/dbghelp/symbol.c | 2 +- sdk/tools/winesync/dbghelp.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/win32/dbghelp/symbol.c b/dll/win32/dbghelp/symbol.c index 25cff440d78..bdb321bd96a 100644 --- a/dll/win32/dbghelp/symbol.c +++ b/dll/win32/dbghelp/symbol.c @@ -875,7 +875,7 @@ static void symt_get_length(struct module* module, const struct symt* symt, ULON } /* neede by symt_find_nearest */ -int symt_get_best_at(struct module* module, int idx_sorttab) +static int symt_get_best_at(struct module* module, int idx_sorttab) { ULONG64 ref_addr; int idx_sorttab_orig = idx_sorttab; diff --git a/sdk/tools/winesync/dbghelp.cfg b/sdk/tools/winesync/dbghelp.cfg index ddd733899ab..5b1c15a7d2a 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: 797f93be6553d4a759473886ad00826c3371d094 + wine: edcff4046c5aa70c047c1a523a93a5cc5782fb44
