From 1b9e4d5c00bbaa8e6ea3664f289f3ce223bed48c Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Fri, 2 Jul 2010 08:52:35 +0000 Subject: [PATCH] STATUS_UNWIND_CONSOLIDATE "should not happen", so don't include it - we'd have to include some other headers to get it defined. Get rid of the include of Winbase.h - it doesn't define STATUS_UNWIND_CONSOLIDATE, and it's not necessary. svn path=/trunk/; revision=33413 --- capture_sync.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/capture_sync.c b/capture_sync.c index 2ed64be34b..68b79f7928 100644 --- a/capture_sync.c +++ b/capture_sync.c @@ -44,7 +44,6 @@ #include #ifdef _WIN32 -#include #include #endif @@ -275,7 +274,6 @@ win32strexception(DWORD exception) { EXCEPTION_PRIV_INSTRUCTION, "Privileged instruction" }, { EXCEPTION_SINGLE_STEP, "Single-step complete" }, { EXCEPTION_STACK_OVERFLOW, "Stack overflow" }, - { STATUS_UNWIND_CONSOLIDATE, "Frame consolidation executed" }, { 0, NULL } }; #define N_EXCEPTIONS (sizeof exceptions / sizeof exceptions[0])