diff mbox

[MERGED] libosmocore[master]: Fixing build on Mac OSX

Message ID 20160528165958.9A3076608@lists.osmocom.org
State New
Headers show

Commit Message

gerrit-no-reply@lists.osmocom.org May 28, 2016, 4:59 p.m. UTC
Holger Freyther has submitted this change and it was merged.

Change subject: Fixing build on Mac OSX
......................................................................


Fixing build on Mac OSX

Fix minor syntax error

Change-Id: I67f9a1e41fa5b1da3a4b10fc76138e153b767241
Reviewed-on: https://gerrit.osmocom.org/125
Tested-by: Jenkins Builder
Reviewed-by: Holger Freyther <holger@freyther.de>
---
M include/osmocom/core/endian.h
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Jenkins Builder: Verified
  Holger Freyther: Looks good to me, approved
diff mbox

Patch

diff --git a/include/osmocom/core/endian.h b/include/osmocom/core/endian.h
index 02c6406..ae133c3 100644
--- a/include/osmocom/core/endian.h
+++ b/include/osmocom/core/endian.h
@@ -28,7 +28,7 @@ 
 	#if defined(__DARWIN_LITTLE_ENDIAN)
 		#define OSMO_IS_LITTLE_ENDIAN		1
 		#define OSMO_IS_BIG_ENDIAN		0
-	#elif define(__DARWIN_BIG_ENDIAN)
+	#elif defined(__DARWIN_BIG_ENDIAN)
 		#define OSMO_IS_LITTLE_ENDIAN		0
 		#define OSMO_IS_BIG_ENDIAN		1
 	#else