Fix a type mismatch warning from Clang

This commit is contained in:
Jason Perkins 2015-05-07 15:41:58 -04:00
parent f233bd7ed7
commit 96431eabac

View File

@ -19,7 +19,7 @@
static int compare_file(const char* content, size_t length, const char* dst) static int compare_file(const char* content, size_t length, const char* dst)
{ {
FILE* file = fopen(dst, "rb"); FILE* file = fopen(dst, "rb");
long size; size_t size;
char buffer[4096]; char buffer[4096];
int num; int num;