Commit 6c64e6de authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Silence some FIXMEs.

Reading gecko's PDB generate a lot of those. Signed-off-by: 's avatarEric Pouech <eric.pouech@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent f4ddcc36
...@@ -1926,7 +1926,7 @@ static struct symt_inlinesite* codeview_create_inline_site(const struct msc_debu ...@@ -1926,7 +1926,7 @@ static struct symt_inlinesite* codeview_create_inline_site(const struct msc_debu
if (!found) if (!found)
{ {
FIXME("Couldn't find start address of inlined\n"); WARN("Couldn't find start address of inlined\n");
return NULL; return NULL;
} }
......
...@@ -612,7 +612,7 @@ BOOL symt_add_inlinesite_range(struct module* module, ...@@ -612,7 +612,7 @@ BOOL symt_add_inlinesite_range(struct module* module,
{ {
struct addr_range* ar = (struct addr_range*)vector_at(&inlined->vranges, i); struct addr_range* ar = (struct addr_range*)vector_at(&inlined->vranges, i);
if (!addr_range_disjoint(ar, p) && !addr_range_inside(ar, p)) 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");
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment