Skip to content

Commit dfb236b

Browse files
chore: indentation alignment
1 parent 6b046f5 commit dfb236b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

programs/fileio_common.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ extern UTIL_time_t g_displayClock;
8181
/* Avoid fseek()'s 2GiB barrier with MSVC, macOS, *BSD, MinGW */
8282
#if defined(LIBC_NO_FSEEKO)
8383
/* Some older libc implementations don't include these functions (e.g. Bionic < 24) */
84-
# define LONG_SEEK fseek
85-
# define LONG_TELL ftell
84+
# define LONG_SEEK fseek
85+
# define LONG_TELL ftell
8686
#elif defined(_MSC_VER) && _MSC_VER >= 1400
8787
# define LONG_SEEK _fseeki64
8888
# define LONG_TELL _ftelli64
8989
#elif !defined(__64BIT__) && (PLATFORM_POSIX_VERSION >= 200112L) /* No point defining Large file for 64 bit */
90-
# define LONG_SEEK fseeko
91-
# define LONG_TELL ftello
90+
# define LONG_SEEK fseeko
91+
# define LONG_TELL ftello
9292
#elif defined(__MINGW32__) && !defined(__STRICT_ANSI__) && !defined(__NO_MINGW_LFS) && defined(__MSVCRT__)
9393
# define LONG_SEEK fseeko64
9494
# define LONG_TELL ftello64

0 commit comments

Comments
 (0)