From 948b06c2953b5caa5d6af5eb3dacb2200e357844 Mon Sep 17 00:00:00 2001 From: James Nobis Date: Tue, 9 Nov 2010 19:20:34 -0600 Subject: [PATCH] remove (int) cast that was unnecessary and incorrect --- BOINC software/BOINC client apps/distrrtgen/distrrtgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2