Eric Pouech : dbghelp: Silence some FIXMEs.
Module: wine Branch: master Commit: 6c64e6dee4dc467d240ef44f177d95068a59e7d3 URL: https://source.winehq.org/git/wine.git/?a=commit;h=6c64e6dee4dc467d240ef44f1... Author: Eric Pouech <eric.pouech(a)gmail.com> Date: Wed Dec 15 13:32:00 2021 +0100 dbghelp: Silence some FIXMEs. Reading gecko's PDB generate a lot of those. Signed-off-by: Eric Pouech <eric.pouech(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/dbghelp/msc.c | 2 +- dlls/dbghelp/symbol.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index 894d01a4c00..317f7bb84b5 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/dbghelp/msc.c @@ -1926,7 +1926,7 @@ static struct symt_inlinesite* codeview_create_inline_site(const struct msc_debu if (!found) { - FIXME("Couldn't find start address of inlined\n"); + WARN("Couldn't find start address of inlined\n"); return NULL; } diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c index 2443dbf7e73..d3ba4521fa0 100644 --- a/dlls/dbghelp/symbol.c +++ b/dlls/dbghelp/symbol.c @@ -612,7 +612,7 @@ BOOL symt_add_inlinesite_range(struct module* module, { struct addr_range* ar = (struct addr_range*)vector_at(&inlined->vranges, i); if (!addr_range_disjoint(ar, p) && !addr_range_inside(ar, p)) - FIXME("Added addr_range not compatible with parent\n"); + WARN("Added addr_range not compatible with parent\n"); } } }
participants (1)
-
Alexandre Julliard