dbghelp: Runtime warning rather than compile time error to allow compilation on non-i386 arch

Pierre d'Herbemont stegefin at free.fr
Fri Dec 23 11:09:26 CST 2005


Alexandre,

Here is a small patch to allow compilation on non-i386 arch.

Thanks,

Pierre.

ChangeLog:
Runtime warning rather than compile time error to allow compilation  
on non-i386 arch.

dlls/dbghelp/minidump.c |    2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
d35c2f4b5fe0cc5ad2c5c29ad27bc316e0e00eff
diff --git a/dlls/dbghelp/minidump.c b/dlls/dbghelp/minidump.c
index 2eff73f..790e32e 100644
--- a/dlls/dbghelp/minidump.c
+++ b/dlls/dbghelp/minidump.c
@@ -169,7 +169,7 @@ static BOOL fetch_thread_info(struct dum
                  mdThd->Stack.Memory.DataSize = (ULONG_PTR) 
tib.StackBase -
                      mdThd->Stack.StartOfMemoryRange;
  #else
-#error unsupported CPU
+            FIXME("unsupported cpu\n");
  #endif
              }
              ResumeThread(hThread);



More information about the wine-patches mailing list