summaryrefslogtreecommitdiff
path: root/hc256.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hc256.cpp')
-rw-r--r--hc256.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/hc256.cpp b/hc256.cpp
index f8ec989f..b2fc592c 100644
--- a/hc256.cpp
+++ b/hc256.cpp
@@ -107,7 +107,7 @@ void HC256Policy::OperateKeystream(KeystreamOperation operation, byte *output, c
// writing the result to the output buffer. In all cases the
// keystream is written to the output buffer. The optional part is
// adding the input buffer and keystream.
- if ((operation & INPUT_NULL) != INPUT_NULL)
+ if ((operation & static_cast<int>(INPUT_NULL)) != static_cast<int>(INPUT_NULL))
{
xorbuf(output, input, BYTES_PER_ITERATION);
input += BYTES_PER_ITERATION;