about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/emu/x64int3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/x64int3.c b/src/emu/x64int3.c
index 836366aa..3dd818ed 100644
--- a/src/emu/x64int3.c
+++ b/src/emu/x64int3.c
@@ -364,12 +364,12 @@ void x64Int3(x64emu_t* emu, uintptr_t* addr)
         }
         return;
     }
-     if(!box64_ignoreint3 && my_context->signals[SIGTRAP])
+    if(!box64_ignoreint3 && my_context->signals[SIGTRAP])
         emit_signal(emu, SIGTRAP, (void*)R_RIP, 128);
-   else {
+    else {
         printf_log(LOG_DEBUG, "%04d|Warning, ignoring unsupported Int 3 call @%p\n", GetTID(), (void*)R_RIP);
         R_RIP = *addr;
-   }
+    }
     //emu->quit = 1;
 }