Fix typo in PRId64.

This commit is contained in:
simonb 2001-09-19 01:49:47 +00:00
parent 9c5c77ae54
commit a2c1c5c8eb
1 changed files with 2 additions and 2 deletions

View File

@ -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 */