Skip to content

Commit

Permalink
utils: fix OS_MAX_PATH on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
janweinstock committed Oct 8, 2024
1 parent e1ac623 commit 5754d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mwr/core/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ constexpr int STDERR_FDNO = 2;
constexpr size_t OS_MAX_PATH = 260;
#elif defined(MWR_LINUX)
constexpr size_t OS_MAX_PATH = 4096;
#elif defined(MWR_OSX)
#elif defined(MWR_MACOS)
constexpr size_t OS_MAX_PATH = 1024;
#endif

Expand Down

0 comments on commit 5754d0b

Please sign in to comment.