thinko in serial.c::serial_write debug trace
authorJoel Brobecker <brobecker@adacore.com>
Fri, 6 Jun 2014 15:28:27 +0000 (11:28 -0400)
committerJoel Brobecker <brobecker@adacore.com>
Tue, 10 Jun 2014 09:50:06 +0000 (11:50 +0200)
commit0e58ee40a2cec3c4bf796980fb05f93540e40ec2
tree2566a025fd5b6dcb4ed9db50b3089f0dab879e3d
parentd190df30a147b90e2f189c2038b8ffab5fd8af60
thinko in serial.c::serial_write debug trace

I noticed that, when using 'set debug serial 1', the "write" traces
would always be NUL characters:

    [
    w \x00][\x00][\x00][\x00][\x00][etc]

This is due to a small thinko in the loop that output each character,
where we accidently used the loop boundary instead of the loop index
to index the character to be printed.

After this patch is applied, the output now becomes:

    [
    w $][v][C][o][n][t][?][#][4][9]

gdb/ChangeLog:

* serial.c (serial_write): Fix index of character to be printed
in call to serial_logchar when serial debug traces are enabled.
gdb/ChangeLog
gdb/serial.c
This page took 0.024015 seconds and 4 git commands to generate.