This is an automated email from the ASF dual-hosted git repository. gaurava pushed a commit to branch nix-flags-x-platform in repository https://gitbox.apache.org/repos/asf/hadoop.git
commit cb9778cf31f37df4970301f3de0dd53475a82884 Author: Gautham Banasandra <[email protected]> AuthorDate: Fri Jul 1 21:42:39 2022 +0530 Use _WIN32 instead of _WIN64 * Since _WIN32 applies to both 32 and 64 bit versions of Windows. --- .../src/main/native/libhdfspp/lib/x-platform/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/lib/x-platform/stat.h b/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/lib/x-platform/stat.h index 6fd8fad87f6..aec72609d19 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/lib/x-platform/stat.h +++ b/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/lib/x-platform/stat.h @@ -19,7 +19,7 @@ #ifndef NATIVE_LIBHDFSPP_LIB_CROSS_PLATFORM_STAT #define NATIVE_LIBHDFSPP_LIB_CROSS_PLATFORM_STAT -#if defined(_WIN64) +#if defined(_WIN32) // Windows. #define S_IRUSR 0400 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
