From 7af82f0d4f3aea4acbbd05001d744e07cb6b707a Mon Sep 17 00:00:00 2001 From: Borja Ferrer Date: Fri, 18 Aug 2006 13:05:09 +0000 Subject: [PATCH] n0thing --- amxmodx/md5.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amxmodx/md5.cpp b/amxmodx/md5.cpp index 0eb37288..14f3b9f1 100755 --- a/amxmodx/md5.cpp +++ b/amxmodx/md5.cpp @@ -111,7 +111,7 @@ void MD5::update(FILE *file){ unsigned char buffer[1024]; int len; - while (len=fread(buffer, 1, 1024, file)) + while ((len=fread(buffer, 1, 1024, file))) update(buffer, len); fclose (file);