From: Michael Jerris Date: Fri, 11 May 2007 17:03:50 +0000 (+0000) Subject: backport change from the iaxclient sf repository rev 558 (correct ifdef this time) X-Git-Tag: v1.0-beta1~336 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=310037dff3f3a3304e854ef3f2cb0234ac1f77e7;p=thirdparty%2Ffreeswitch.git backport change from the iaxclient sf repository rev 558 (correct ifdef this time) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5152 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/libs/iax/src/md5.h b/libs/iax/src/md5.h index 02f98fbb1a..69e0071fc5 100644 --- a/libs/iax/src/md5.h +++ b/libs/iax/src/md5.h @@ -1,7 +1,7 @@ #ifndef MD5_H #define MD5_H -#ifdef __alpha || defined(__x86_64) +#if defined(__alpha) || defined(__x86_64) typedef unsigned int uint32; #else typedef unsigned long uint32;