diff options
Diffstat (limited to 'src/arch/x86/exception.c')
-rw-r--r-- | src/arch/x86/exception.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/exception.c b/src/arch/x86/exception.c index b6e6ffb098..cbf0358839 100644 --- a/src/arch/x86/exception.c +++ b/src/arch/x86/exception.c @@ -420,7 +420,7 @@ void x86_exception(struct eregs *info) out_buffer[2] = hexchars[signo & 0xf]; out_buffer[3] = '\0'; break; - case 'g': /* return the value of the cpu registers */ + case 'g': /* return the value of the CPU registers */ copy_to_hex(out_buffer, &gdb_stub_registers, sizeof(gdb_stub_registers)); break; case 'G': /* set the value of the CPU registers - return OK */ |