diff options
-rw-r--r-- | contrib/testzlib/testzlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/testzlib/testzlib.c b/contrib/testzlib/testzlib.c index 135888e..5f659de 100644 --- a/contrib/testzlib/testzlib.c +++ b/contrib/testzlib/testzlib.c | |||
@@ -116,10 +116,10 @@ DWORD GetMsecSincePerfCounter(LARGE_INTEGER beginTime64,BOOL fComputeTimeQueryPe | |||
116 | return dwRet; | 116 | return dwRet; |
117 | } | 117 | } |
118 | 118 | ||
119 | int ReadFileMemory(const char* filename,long* plFileSize,void** pFilePtr) | 119 | int ReadFileMemory(const char* filename,long* plFileSize,unsigned char** pFilePtr) |
120 | { | 120 | { |
121 | FILE* stream; | 121 | FILE* stream; |
122 | void* ptr; | 122 | unsigned char* ptr; |
123 | int retVal=1; | 123 | int retVal=1; |
124 | stream=fopen(filename, "rb"); | 124 | stream=fopen(filename, "rb"); |
125 | if (stream==NULL) | 125 | if (stream==NULL) |