X-Git-Url: https://git.sesse.net/?p=freerainbowtables;a=blobdiff_plain;f=Client%20Applications%2Frti2rto%2Frti2rto.cpp;h=ba7f16315e6f4f7531b33082087db2e14b27db0e;hp=086c333f27172373569429ad44868798b3b02b58;hb=86bbf0fd5ba4e07d3279b4179fd8fc808198eaae;hpb=3d42602c1f746b5768f0e6c9d22884a9806eadc0 diff --git a/Client Applications/rti2rto/rti2rto.cpp b/Client Applications/rti2rto/rti2rto.cpp index 086c333..ba7f163 100644 --- a/Client Applications/rti2rto/rti2rto.cpp +++ b/Client Applications/rti2rto/rti2rto.cpp @@ -129,7 +129,7 @@ void ConvertRainbowTable(string sPathName, string sResultFileName, string sType) #ifdef _MEMORYDEBUG printf("Recieved %i chains from file\n", nChains); #endif - for(UINT4 i = 0; i < nChains; i++) + for(uint32 i = 0; i < nChains; i++) { fwrite(&pChain[i], 1, 16, fResult); } @@ -170,7 +170,7 @@ int main(int argc, char* argv[]) printf("no rainbow table found\n"); return 0; } - for (UINT4 i = 0; i < vPathName.size(); i++) + for (uint32 i = 0; i < vPathName.size(); i++) { string sResultFile, sType; @@ -193,4 +193,4 @@ int main(int argc, char* argv[]) printf("\n"); } return 0; -} \ No newline at end of file +}