diff options
Diffstat (limited to 'chrome_frame/exception_barrier.cc')
-rw-r--r-- | chrome_frame/exception_barrier.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome_frame/exception_barrier.cc b/chrome_frame/exception_barrier.cc index 95c12f3..51e764a 100644 --- a/chrome_frame/exception_barrier.cc +++ b/chrome_frame/exception_barrier.cc @@ -16,10 +16,10 @@ ExceptionBarrier::ExceptionHandler ExceptionBarrier::s_handler_ = NULL; // This function must be extern "C" to match up with the SAFESEH // declaration in our corresponding ASM file extern "C" EXCEPTION_DISPOSITION __cdecl -ExceptionBarrierHandler(struct _EXCEPTION_RECORD *exception_record, - void * establisher_frame, - struct _CONTEXT *context, - void * reserved) { +ExceptionBarrierHandler(struct _EXCEPTION_RECORD* exception_record, + void* establisher_frame, + struct _CONTEXT* context, + void* reserved) { establisher_frame; // unreferenced formal parameter reserved; if (!(exception_record->ExceptionFlags & EH_UNWINDING)) { |