1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

libcdio: fix MSVC-only definition

according to the comment it should be defined for MSVC only. fixes UCRT build
This commit is contained in:
Maksim Bondarenkov 2024-08-13 20:36:14 +03:00
parent 20881ceea6
commit 7716b52888

View file

@ -40,7 +40,9 @@
/* Define to 1 if you have the `fseeko64' function. */
#define HAVE_FSEEKO64 1
/* The equivalent of fseeko64 for MSVC is _fseeki64 */
#if defined(_MSC_VER)
#define fseeko64 _fseeki64
#endif
/* Define to 1 if you have the `ftruncate' function. */
/* #undef HAVE_FTRUNCATE */