summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--validat1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/validat1.cpp b/validat1.cpp
index baadb46..f337ca1 100644
--- a/validat1.cpp
+++ b/validat1.cpp
@@ -300,7 +300,7 @@ bool TestOS_RNG()
}
else
cout << "passed:";
- cout << " " << total << " generated bytes compressed to " << sink->TotalPutLength() << " bytes by DEFLATE" << endl;
+ cout << " " << total << " generated bytes compressed to " << (size_t)sink->TotalPutLength() << " bytes by DEFLATE" << endl;
}
else
cout << "\nNo operating system provided blocking random number generator, skipping test." << endl;
@@ -325,7 +325,7 @@ bool TestOS_RNG()
}
else
cout << "passed:";
- cout << " 100000 generated bytes compressed to " << sink->TotalPutLength() << " bytes by DEFLATE" << endl;
+ cout << " 100000 generated bytes compressed to " << (size_t)sink->TotalPutLength() << " bytes by DEFLATE" << endl;
}
else
cout << "\nNo operating system provided nonblocking random number generator, skipping test." << endl;