Skip to content
Snippets Groups Projects
Commit aa16ad03 authored by chrfranke's avatar chrfranke
Browse files

Windows: Fixed int64 printf format for MinGW runtime.

git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@2310 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent 192705f2
Branches
No related tags found
No related merge requests found
CHANGELOG for smartmontools
$Id: CHANGELOG,v 1.581 2006/10/25 22:18:43 pjwilliams Exp $
$Id: CHANGELOG,v 1.582 2006/10/27 20:24:27 chrfranke Exp $
The most recent version of this file is:
http://smartmontools.cvs.sourceforge.net/smartmontools/sm5/CHANGELOG?view=markup
......@@ -33,6 +33,8 @@ NOTES FOR FUTURE RELEASES: see TODO file.
<DEVELOPERS: ADDITIONS TO THE CHANGE LOG GO JUST BELOW HERE, PLEASE>
[CF] Windows: Fixed int64 printf format for MinGW runtime.
[PW] Drive database: added Seagate Barracuda 7200.10 family, Seagate
Momentus 42 family, Maxtor DiamondMax 60 ATA 66 family, Maxtor
DiamondMax 60 ATA 100 family, and Western Digital Caviar Serial
......
......@@ -20,7 +20,7 @@
#ifndef INT64_H_
#define INT64_H_
#define INT64_H_CVSID "$Id: int64.h,v 1.14 2006/10/22 11:50:47 ballen4705 Exp $\n"
#define INT64_H_CVSID "$Id: int64.h,v 1.15 2006/10/27 20:24:27 chrfranke Exp $\n"
// 64 bit integer typedefs
......@@ -58,8 +58,8 @@ typedef unsigned long long uint64_t;
// 64 bit integer format strings
#if defined(_WIN32) && defined(_MSC_VER)
// for MSVC 6.0
#if defined(_WIN32)
// for MSVCRT.DLL (used by both MSVC 6.0 and MinGW)
#define PRId64 "I64d"
#define PRIu64 "I64u"
#define PRIx64 "I64x"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment