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;