Skip to content

Commit

Permalink
WIP step 1
Browse files Browse the repository at this point in the history
fseeko pour MAC dans CreateLargeFile.cpp
  • Loading branch information
marcboulle committed Oct 5, 2023
1 parent 1289a80 commit ec8bf0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Learning/KWTest/CreateLargeFiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ boolean MovePositionInBinaryFile(FILE* fFile, longint lOffset)
#if defined __MSC__
_fseeki64(fFile, lOffset, SEEK_CUR);
#elif defined(__APPLE__)
fseeko(fFile, lOffset, nWhence);
fseeko(fFile, lOffset, SEEK_CUR);
#else
fseeko64(fFile, lOffset, SEEK_CUR);
#endif
Expand Down

0 comments on commit ec8bf0c

Please sign in to comment.