Skip to content

Commit

Permalink
rtc_base: fix endianness detection on OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
klemensn committed Dec 14, 2021
1 parent c031659 commit 089eb63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rtc_base/byte_order.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

#elif defined(WEBRTC_LINUX)
#include <endian.h>
#elif defined(WEBRTC_FREEBSD)
#elif defined(WEBRTC_FREEBSD) || defined(WEBRTC_OPENBSD)
#include <sys/endian.h>
#else
#error "Missing byte order functions for this arch."
Expand Down

0 comments on commit 089eb63

Please sign in to comment.