X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/43f8864bb00185868360e34f8e4b2a5458255785..eb6b14dc71402c42e0474779bfcd6e878383071e:/tests/strings/vsnprintf.cpp diff --git a/tests/strings/vsnprintf.cpp b/tests/strings/vsnprintf.cpp index 42874ba22e..fad7e068ea 100644 --- a/tests/strings/vsnprintf.cpp +++ b/tests/strings/vsnprintf.cpp @@ -5,7 +5,6 @@ // (part of this file was taken from CMP.c of TRIO package // written by Bjorn Reese and Daniel Stenberg) // Created: 2006-04-01 -// RCS-ID: $Id$ // Copyright: (c) 2006 Francesco Montorsi, Bjorn Reese and Daniel Stenberg /////////////////////////////////////////////////////////////////////////////// @@ -189,7 +188,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( VsnprintfTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( VsnprintfTestCase, "VsnprintfTestCase" ); void VsnprintfTestCase::setUp() @@ -425,7 +424,7 @@ void VsnprintfTestCase::LongLong() CMP3("123456789", "%llu", (wxULongLong_t)123456789); -#ifdef __WXMSW__ +#ifdef __WINDOWS__ CMP3("123456789", "%I64d", (wxLongLong_t)123456789); CMP3("123456789abcdef", "%I64x", wxLL(0x123456789abcdef)); #endif