Francois Gouget : dbghelp: Make symt_get_best_at() static.
Module: wine Branch: master Commit: edcff4046c5aa70c047c1a523a93a5cc5782fb44 URL: https://source.winehq.org/git/wine.git/?a=commit;h=edcff4046c5aa70c047c1a523... Author: Francois Gouget <fgouget(a)free.fr> Date: Sun Dec 9 01:41:20 2018 +0100 dbghelp: Make symt_get_best_at() static. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/dbghelp/symbol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c index c9585c5..96a1f87 100644 --- a/dlls/dbghelp/symbol.c +++ b/dlls/dbghelp/symbol.c @@ -851,7 +851,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;
participants (1)
-
Alexandre Julliard