summaryrefslogtreecommitdiff
path: root/pjlib/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-01-20 19:42:46 +0000
committerBenny Prijono <bennylp@teluu.com>2010-01-20 19:42:46 +0000
commit9a47b10d958ece028b24f2c547bb1891e004cb3a (patch)
tree1f502125d3747fed668e5a06bf759ae0e5952e2f /pjlib/include
parent7ece324274c1012b34fb41dbee67eb5f51924f03 (diff)
Ticket #1026: Wrong endianness detection for Motorola m68k architecture in pj/config.h (thanks Andreas Wehrmann for the report)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3066 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include')
-rw-r--r--pjlib/include/pj/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pjlib/include/pj/config.h b/pjlib/include/pj/config.h
index ab37d2df..b1ef3ab9 100644
--- a/pjlib/include/pj/config.h
+++ b/pjlib/include/pj/config.h
@@ -177,14 +177,14 @@
#elif defined (PJ_M_M68K) && PJ_M_M68K != 0
/*
- * Motorola m64k processor, little endian
+ * Motorola m68k processor, big endian
*/
# undef PJ_M_M68K
# define PJ_M_M68K 1
# define PJ_M_NAME "m68k"
# define PJ_HAS_PENTIUM 0
-# define PJ_IS_LITTLE_ENDIAN 1
-# define PJ_IS_BIG_ENDIAN 0
+# define PJ_IS_LITTLE_ENDIAN 0
+# define PJ_IS_BIG_ENDIAN 1
#elif defined (PJ_M_ALPHA) || defined (__alpha__) || defined (__alpha) || \