From 4eed8f708b7a90fa82aa8865882bc3e0e448f3ce Mon Sep 17 00:00:00 2001 From: cxl Date: Mon, 19 Jan 2015 10:06:06 +0000 Subject: [PATCH] .autotest git-svn-id: svn://ultimatepp.org/upp/trunk@8063 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- autotest/PeekPokeSwap/PeekPokeSwap.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/autotest/PeekPokeSwap/PeekPokeSwap.cpp b/autotest/PeekPokeSwap/PeekPokeSwap.cpp index 3c4d8e009..4bde99bac 100644 --- a/autotest/PeekPokeSwap/PeekPokeSwap.cpp +++ b/autotest/PeekPokeSwap/PeekPokeSwap.cpp @@ -6,7 +6,7 @@ CONSOLE_APP_MAIN { StdLogSetup(LOG_FILE|LOG_COUT); - char h[] = { 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99 }; + byte h[] = { 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99 }; word v16 = Peek16le(h + 1); RDUMP(Format64Hex(v16)); @@ -26,5 +26,6 @@ CONSOLE_APP_MAIN v64 = SwapEndian64(v64); RDUMP(Format64Hex(v64)); ASSERT(v64 == 0x2233445566778899); + + RLOG("================ OK"); } -