summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/base16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CryptoPP/base16.cpp')
-rw-r--r--plugins/CryptoPP/base16.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CryptoPP/base16.cpp b/plugins/CryptoPP/base16.cpp
index db838e498d..110eea0a9c 100644
--- a/plugins/CryptoPP/base16.cpp
+++ b/plugins/CryptoPP/base16.cpp
@@ -31,7 +31,7 @@ char *base16decode(const char *inBuffer, int *count) {
}
while(*count>1){
BYTE c0,c1;
- if(big_endian) {
+ if (big_endian) {
c1 = decode16(*--inBuffer);
c0 = decode16(*--inBuffer);
}