[PATCH 1/1] dbghelp: downgrade a FIXME to a WARN

Austin English austinenglish at gmail.com
Wed Apr 13 16:05:58 CDT 2022


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52790
Signed-off-by: Austin English <austinenglish at gmail.com>
---
 dlls/dbghelp/dwarf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c
index 5cc105d35c9..0076b19e5cb 100644
--- a/dlls/dbghelp/dwarf.c
+++ b/dlls/dbghelp/dwarf.c
@@ -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;
-- 
2.35.1




More information about the wine-devel mailing list