Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/alpha/include Fix typo in PRId64.



details:   https://anonhg.NetBSD.org/src/rev/4e353b64e09f
branches:  trunk
changeset: 515209:4e353b64e09f
user:      simonb <simonb%NetBSD.org@localhost>
date:      Wed Sep 19 01:49:47 2001 +0000

description:
Fix typo in PRId64.

diffstat:

 sys/arch/alpha/include/int_fmtio.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r f706ade134a1 -r 4e353b64e09f sys/arch/alpha/include/int_fmtio.h
--- a/sys/arch/alpha/include/int_fmtio.h        Wed Sep 19 01:38:16 2001 +0000
+++ b/sys/arch/alpha/include/int_fmtio.h        Wed Sep 19 01:49:47 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: int_fmtio.h,v 1.2 2001/04/26 16:25:19 kleink Exp $     */
+/*     $NetBSD: int_fmtio.h,v 1.3 2001/09/19 01:49:47 simonb Exp $     */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -48,7 +48,7 @@
 #define        PRId8           "d"     /* int8_t               */
 #define        PRId16          "d"     /* int16_t              */
 #define        PRId32          "d"     /* int32_t              */
-#define        PRId64          "lld"   /* int64_t              */
+#define        PRId64          "ld"    /* int64_t              */
 #define        PRIdLEAST8      "d"     /* int_least8_t         */
 #define        PRIdLEAST16     "d"     /* int_least16_t        */
 #define        PRIdLEAST32     "d"     /* int_least32_t        */



Home | Main Index | Thread Index | Old Index