From b448f30e9c884794601cecd87bb136d1edf5bb0f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 17 Jan 2003 13:27:20 +0000 Subject: [PATCH] Borland apparently uses for int64 in printf(), not git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18790 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/longlong.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 83d32a77fb..468d826636 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -60,7 +60,7 @@ #elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520) #define wxLongLong_t __int64 #define wxLongLongSuffix i64 - #define wxLongLongFmtSpec _T("I64") + #define wxLongLongFmtSpec _T("Ld") #elif (defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG >= 8) || \ defined(__MINGW32__) || \ defined(__GNUC__) || \ -- 2.45.2