Skip to content

Commit

Permalink
Merge branch 'igrr-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Spritetm committed Dec 29, 2015
2 parents 4c9d2f0 + d0421a0 commit b68a0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdbstub.c
Expand Up @@ -298,7 +298,7 @@ static void ATTR_GDBFN sendReason() {
} else if (gdbstub_savedRegs.reason&0x80) {
//We stopped because of an exception. Convert exception code to a signal number and send it.
i=gdbstub_savedRegs.reason&0x7f;
if (i<sizeof(exceptionSignal)) return gdbPacketHex(exceptionSignal[i], 8); else gdbPacketHex(11, 8);
if (i<sizeof(exceptionSignal)) gdbPacketHex(exceptionSignal[i], 8); else gdbPacketHex(11, 8);
} else {
//We stopped because of a debugging exception.
gdbPacketHex(5, 8); //sigtrap
Expand Down

0 comments on commit b68a0d4

Please sign in to comment.