aboutsummaryrefslogtreecommitdiff
path: root/common/md5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/md5.cpp')
-rw-r--r--common/md5.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/md5.cpp b/common/md5.cpp
index fee18f25d0..edce9d8e4e 100644
--- a/common/md5.cpp
+++ b/common/md5.cpp
@@ -268,10 +268,10 @@ bool md5_file(const char *name, uint8 digest[16], uint32 length) {
warning("md5_file couldn't open '%s'", name);
return false;
}
-
+
return md5_file(f, digest, length);
}
-
+
bool md5_file(ReadStream &stream, uint8 digest[16], uint32 length) {