From 6b2c314f208fbf34b64fa71f6a93dfe0b481b878 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 17 Jun 2009 21:57:51 +0000 Subject: [PATCH] 2009-06-18 Chris Johns * libmisc/shell/hexdump-odsyntax.c: H8300 has the same size float and double. Fix error in case statement. --- cpukit/ChangeLog | 5 +++++ cpukit/libmisc/shell/hexdump-odsyntax.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 7fe7478eb9..f529b26a86 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2009-06-18 Chris Johns + + * libmisc/shell/hexdump-odsyntax.c: H8300 has the same size float + and double. Fix error in case statement. + 2009-06-18 Chris Johns * score/cpu/mips/rtems/mips/idtcpu.h: Missed another WAIT diff --git a/cpukit/libmisc/shell/hexdump-odsyntax.c b/cpukit/libmisc/shell/hexdump-odsyntax.c index 5fba463b5c..cd9683c61d 100644 --- a/cpukit/libmisc/shell/hexdump-odsyntax.c +++ b/cpukit/libmisc/shell/hexdump-odsyntax.c @@ -353,7 +353,7 @@ odformatfp(rtems_shell_hexdump_globals* globals, char fchar __unused, const char case sizeof(float): digits = FLT_DIG; break; -#if !defined(__AVR__) +#if !defined(__AVR__) && !defined(__H8300__) case sizeof(double): digits = DBL_DIG; break;