Commit a71b5abf authored by Ulf Möller's avatar Ulf Möller
Browse files

use <= instead of ==

parent 928cc3a6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ int RAND_load_file(const char *file, long bytes)
		if (bytes > 0)
			{
			bytes-=n;
			if (bytes == 0) break;
			if (bytes <= 0) break;
			}
		}
	fclose(in);