Commit 8d3ca213 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

dbghelp: Downgrade a FIXME to a WARN.

parent d0089b85
......@@ -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;
......
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