summaryrefslogtreecommitdiff
path: root/cypher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cypher.cpp')
-rw-r--r--cypher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cypher.cpp b/cypher.cpp
index 71f064d..d5ca35b 100644
--- a/cypher.cpp
+++ b/cypher.cpp
@@ -44,7 +44,7 @@ void NullCypher::cypher(Buffer& out, Buffer& in, u_int32_t length, seq_nr_t seq_
{
try
{
- for(u_int32_t i; i<length; ++i)
+ for(u_int32_t i=0; i<length; ++i)
out[i] = in[i];
}
catch(std::out_of_range& o) {}