medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 3218038fa9c24180ecddab045f1b214036b5bb03
parent 413437934d5a32dca7dcf34b41c22a2819868c6b
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue Nov  8 20:04:56 +0200

Use cgdb instead of gdbx

Diffstat:
autogdb.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autogdb.h b/autogdb.h @@ -60,7 +60,7 @@ static void prompt_to_run_gdb( int signal ) { reset_debug_signal_handlers(); if( child_pid == 0 ) { - execlp( "gdbx", "gdbx", "--", "-q", "-p", crashed_pid, ( char * ) 0 ); + execlp( "cgdb", "cgdb", "--", "-q", "-p", crashed_pid, ( char * ) 0 ); execlp( "gdb", "gdb", "-q", "-p", crashed_pid, ( char * ) 0 ); err( 1, "execlp" ); }