got rid of imlpicit precision loss

This commit is contained in:
Paul Cruz 2017-06-15 16:01:52 -07:00
parent b766211e10
commit 54e0b6c66b

View File

@ -920,7 +920,7 @@ static int getFileInfo(fileInfo_t* info, const char* inFileName){
{
/* move to the end of the frame header */
int const ret = fseek(srcFile, headerSize-numBytesRead, SEEK_CUR);
int const ret = fseek(srcFile, (long)(headerSize-numBytesRead), SEEK_CUR);
if (ret != 0) {
DISPLAY("Error: could not move to end of frame header\n");
detectError = 1;