From: James Nobis Date: Wed, 10 Nov 2010 01:20:34 +0000 (-0600) Subject: remove (int) cast that was unnecessary and incorrect X-Git-Url: https://git.sesse.net/?p=freerainbowtables;a=commitdiff_plain;h=948b06c2953b5caa5d6af5eb3dacb2200e357844 remove (int) cast that was unnecessary and incorrect --- diff --git a/BOINC software/BOINC client apps/distrrtgen/distrrtgen.cpp b/BOINC software/BOINC client apps/distrrtgen/distrrtgen.cpp index 69621d2..8245a6b 100644 --- a/BOINC software/BOINC client apps/distrrtgen/distrrtgen.cpp +++ b/BOINC software/BOINC client apps/distrrtgen/distrrtgen.cpp @@ -224,7 +224,7 @@ int main(int argc, char **argv) { // Round to boundary nDataLen = nDataLen / 10 * 10; - if ((int)nDataLen == nRainbowChainCount * 10) + if (nDataLen == nRainbowChainCount * 10) { std::cerr << "precomputation of this rainbow table already finished" << std::endl; fclose(outfile);