summaryrefslogtreecommitdiff
path: root/gdb_remote.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb_remote.c')
-rw-r--r--gdb_remote.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb_remote.c b/gdb_remote.c
index d862124..17929f8 100644
--- a/gdb_remote.c
+++ b/gdb_remote.c
@@ -474,7 +474,7 @@ not_impl:
fatal_error("Command %s is not implemented, exiting...\n", command);
}
-m68k_context * gdb_debug_enter(m68k_context * context, uint32_t pc)
+void gdb_debug_enter(m68k_context * context, uint32_t pc)
{
dfprintf(stderr, "Entered debugger at address %X\n", pc);
if (expect_break_response) {
@@ -556,7 +556,6 @@ m68k_context * gdb_debug_enter(m68k_context * context, uint32_t pc)
curbuf = NULL;
}
}
- return context;
}
#ifdef _WIN32