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:
parent
20881ceea6
commit
7716b52888
1 changed files with 2 additions and 0 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue