fixed minor conversion warning
diff --git a/programs/dibio.c b/programs/dibio.c
index d7b7601..5ea384c 100644
--- a/programs/dibio.c
+++ b/programs/dibio.c
@@ -129,7 +129,7 @@
                 chunkSizes[nbLoadedChunks++] = toLoad;
                 remainingToLoad -= targetChunkSize;
                 if (toLoad < targetChunkSize) {
-                    fseek(f, (targetChunkSize - toLoad), SEEK_CUR);
+                    fseek(f, (long)(targetChunkSize - toLoad), SEEK_CUR);
         }   }   }
         fclose(f);
     }