Skip to content

Commit

Permalink
fixup! squash! Consistently use uid_t/gid_t for credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
kheaactua committed Jan 31, 2025
1 parent bc84683 commit 856700a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementation/configuration/include/internal_android.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ inline constexpr std::uint32_t MAX_RECONNECTS_LOCAL_UDS = 13;
inline constexpr std::uint32_t MAX_RECONNECTS_LOCAL_TCP = 5;

inline constexpr uid_t ANY_UID = (std::numeric_limits<uid_t>::max)();
inline constexpr gid_t ANY_GID = (std::numeric_limits<uid_t>::max)();
inline constexpr gid_t ANY_GID = (std::numeric_limits<gid_t>::max)();

enum class port_type_e {
PT_OPTIONAL,
Expand Down

0 comments on commit 856700a

Please sign in to comment.