X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Client%20Applications%2Frcracki_mt%2FMemoryPool.cpp;h=3673446af24dcc9e89a72418d24516deff914f5f;hb=371055825f09b5dc2ad00e5702ef4ffe18c419b0;hp=f48961d895dfdceb07a28843378ebe5f023ee405;hpb=dd1ecec588c8c5773cf1c4216039c600263d9eaa;p=freerainbowtables diff --git a/Client Applications/rcracki_mt/MemoryPool.cpp b/Client Applications/rcracki_mt/MemoryPool.cpp index f48961d..3673446 100644 --- a/Client Applications/rcracki_mt/MemoryPool.cpp +++ b/Client Applications/rcracki_mt/MemoryPool.cpp @@ -8,7 +8,7 @@ * Copyright 2009, 2010 James Nobis * Copyright 2010 uroskn * - * This file is part of racrcki_mt. + * This file is part of rcracki_mt. * * rcracki_mt is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,7 +37,11 @@ CMemoryPool::CMemoryPool(unsigned int bytesSaved, bool bDebug, uint64 maxMem) if ( debug ) { - printf( "Debug: nAvailPhys: %llu\n", nAvailPhys ); + #ifdef _WIN32 + printf( "Debug: nAvailPhys: %I64u\n", nAvailPhys ); + #else + printf( "Debug: nAvailPhys: %llu\n", nAvailPhys ); + #endif printf( "Debug: bytesSaved: %d\n", bytesSaved ); }