]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
chore: indentation alignment 4229/head
authorVictor Zhang <csv@meta.com>
Thu, 2 Jan 2025 23:10:40 +0000 (15:10 -0800)
committerVictor Zhang <csv@meta.com>
Thu, 2 Jan 2025 23:10:40 +0000 (15:10 -0800)
programs/fileio_common.h

index 0440015069d5d2eb6af448c5dcc926528d5ee810..696626fe47852ed5a02acaccaae60d5092d17ac1 100644 (file)
@@ -81,14 +81,14 @@ extern UTIL_time_t g_displayClock;
 /* Avoid fseek()'s 2GiB barrier with MSVC, macOS, *BSD, MinGW */
 #if defined(LIBC_NO_FSEEKO)
 /* Some older libc implementations don't include these functions (e.g. Bionic < 24) */
-#  define LONG_SEEK fseek
-#  define LONG_TELL ftell
+#   define LONG_SEEK fseek
+#   define LONG_TELL ftell
 #elif defined(_MSC_VER) && _MSC_VER >= 1400
 #   define LONG_SEEK _fseeki64
 #   define LONG_TELL _ftelli64
 #elif !defined(__64BIT__) && (PLATFORM_POSIX_VERSION >= 200112L) /* No point defining Large file for 64 bit */
-#  define LONG_SEEK fseeko
-#  define LONG_TELL ftello
+#   define LONG_SEEK fseeko
+#   define LONG_TELL ftello
 #elif defined(__MINGW32__) && !defined(__STRICT_ANSI__) && !defined(__NO_MINGW_LFS) && defined(__MSVCRT__)
 #   define LONG_SEEK fseeko64
 #   define LONG_TELL ftello64