Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/sh5/include Blah, missed a comma.



details:   https://anonhg.NetBSD.org/src/rev/c85383bf3011
branches:  trunk
changeset: 534000:c85383bf3011
user:      scw <scw%NetBSD.org@localhost>
date:      Fri Jul 12 13:37:32 2002 +0000

description:
Blah, missed a comma.

diffstat:

 sys/arch/sh5/include/ieeefp.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r 1c7471a2da2f -r c85383bf3011 sys/arch/sh5/include/ieeefp.h
--- a/sys/arch/sh5/include/ieeefp.h     Fri Jul 12 13:28:36 2002 +0000
+++ b/sys/arch/sh5/include/ieeefp.h     Fri Jul 12 13:37:32 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ieeefp.h,v 1.2 2002/07/12 12:20:24 scw Exp $   */
+/*     $NetBSD: ieeefp.h,v 1.3 2002/07/12 13:37:32 scw Exp $   */
 
 /*
  * Written by J.T. Conklin, Apr 6, 1995
@@ -17,10 +17,10 @@
 #define        FP_X_INV        0x10    /* invalid operation exception */
 
 typedef enum {
-       FP_RZ=0         /* round to zero (truncate) */
+       FP_RZ=0,        /* round to zero (truncate) */
        FP_RN=1,        /* round to nearest representable number */
        FP_RM=2,        /* round toward negative infinity (no h/w support) */
-       FP_RP=3,        /* round toward positive infinity (no h/w support) */
+       FP_RP=3         /* round toward positive infinity (no h/w support) */
 } fp_rnd;
 
 #endif /* !_SH5_IEEEFP_H_ */



Home | Main Index | Thread Index | Old Index