dbghelp: Downgrade a FIXME to a WARN.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52790
Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2022-04-13 16:05:58 -05:00 committed by Alexandre Julliard
parent d0089b85c5
commit 8d3ca2130a
1 changed files with 1 additions and 1 deletions

View File

@ -1248,7 +1248,7 @@ static BOOL dwarf2_read_range(dwarf2_parse_context_t* ctx, const dwarf2_debug_in
if (low < *plow) *plow = low;
if (high > *phigh) *phigh = high;
}
if (*plow == UMAX || *phigh == 0) {FIXME("no entry found\n"); return FALSE;}
if (*plow == UMAX || *phigh == 0) {WARN("no entry found\n"); return FALSE;}
if (*plow == *phigh) {WARN("entry found, but low=high %Ix %Ix\n", low, high); return FALSE;}
return TRUE;