all repos — mgba @ a214481b760b8aaf444bdb2bd18ba445ce1885ae

mGBA Game Boy Advance Emulator

Fix typo in type
Jeffrey Pfau jeffrey@endrift.com
Sat, 01 Feb 2014 01:02:26 -0800
commit

a214481b760b8aaf444bdb2bd18ba445ce1885ae

parent

5bbf7f23086d3796fccf09b712d0a8ea497e6d30

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/debugger/cli-debugger.csrc/debugger/cli-debugger.c

@@ -28,7 +28,7 @@ static const char* ERROR_MISSING_ARGS = "Arguments missing";

static struct CLIDebugger* _activeDebugger; -typedef void (DebuggerComamnd)(struct CLIDebugger*, struct DebugVector*); +typedef void (DebuggerCommand)(struct CLIDebugger*, struct DebugVector*); static void _breakInto(struct CLIDebugger*, struct DebugVector*); static void _continue(struct CLIDebugger*, struct DebugVector*);

@@ -47,7 +47,7 @@ static void _breakIntoDefault(int signal);

static struct { const char* name; - DebuggerComamnd* command; + DebuggerCommand* command; } _debuggerCommands[] = { { "b", _setBreakpoint }, { "break", _setBreakpoint },