Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/src/arrow/io/hdfs-internal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static std::vector<fs::path> get_potential_libhdfs_paths() {
std::string file_name;

// OS-specific file name
#ifdef __WIN32
#ifdef _WIN32
file_name = "hdfs.dll";
#elif __APPLE__
file_name = "libhdfs.dylib";
Expand Down Expand Up @@ -103,7 +103,7 @@ static std::vector<fs::path> get_potential_libhdfs3_paths() {
std::string file_name;

// OS-specific file name
#ifdef __WIN32
#ifdef _WIN32
file_name = "hdfs3.dll";
#elif __APPLE__
file_name = "libhdfs3.dylib";
Expand Down