Skip to content

Commit

Permalink
fix #if defined OR expression
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed May 3, 2024
1 parent 374cf20 commit 4137a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utils/ArchiveExtractor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ namespace Utils

auto exitCode = std::system(command.c_str());

#ifdef __linux__ || __apple__
#if defined(__linux__) || defined(__apple__)
exitCode = WEXITSTATUS(exitCode);
#endif

Expand Down

0 comments on commit 4137a89

Please sign in to comment.