fixed minor conversion warning
This commit is contained in:
parent
086b9597d9
commit
a9694231ca
@ -129,7 +129,7 @@ static unsigned DiB_loadFiles(void* buffer, size_t* bufferSizePtr,
|
||||
chunkSizes[nbLoadedChunks++] = toLoad;
|
||||
remainingToLoad -= targetChunkSize;
|
||||
if (toLoad < targetChunkSize) {
|
||||
fseek(f, (targetChunkSize - toLoad), SEEK_CUR);
|
||||
fseek(f, (long)(targetChunkSize - toLoad), SEEK_CUR);
|
||||
} } }
|
||||
fclose(f);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user