aboutsummaryrefslogtreecommitdiffstats
path: root/src/stream
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-12-13 22:12:41 +0000
committerlloyd <[email protected]>2010-12-13 22:12:41 +0000
commit165b6777241bdff9650d9c024792f4f549949a41 (patch)
treeff35d146a9bce1b492886ad1e00f1fa91c1a5afe /src/stream
parentaa8a0c19ec2156864d16bfe4b82fce4f2203c08d (diff)
More VC warning fixes
Diffstat (limited to 'src/stream')
-rw-r--r--src/stream/turing/turing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/turing/turing.cpp b/src/stream/turing/turing.cpp
index 619ef6682..697c660ed 100644
--- a/src/stream/turing/turing.cpp
+++ b/src/stream/turing/turing.cpp
@@ -247,7 +247,7 @@ void Turing::key_schedule(const byte key[], size_t length)
PHT(K);
- for(size_t i = 0; i != 256; ++i)
+ for(u32bit i = 0; i != 256; ++i)
{
u32bit W0 = 0, C0 = i;
u32bit W1 = 0, C1 = i;