From 2d8a9c794cb108149b6187afd2bdf606f88cb535 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Sat, 2 Feb 2019 15:22:04 +1100 Subject: libmisc: Fix rtems_print_buffer Closes #3684 --- cpukit/libmisc/dumpbuf/dumpbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/libmisc') diff --git a/cpukit/libmisc/dumpbuf/dumpbuf.c b/cpukit/libmisc/dumpbuf/dumpbuf.c index a27d685f72..ed4868cdb4 100644 --- a/cpukit/libmisc/dumpbuf/dumpbuf.c +++ b/cpukit/libmisc/dumpbuf/dumpbuf.c @@ -88,7 +88,7 @@ static void Dump_Line(const unsigned char *buffer, const unsigned int length) unsigned char c = buffer[i]; rtems_putc(hexlist[(c >> 4) & 0xf]); - rtems_putc(hexlist[0xf]); + rtems_putc(hexlist[c & 0xf]); rtems_putc(' '); } -- cgit v1.2.3