Solaris didn't like this.

Let's just go ahead and make this match every other uintXX_t in Asterisk.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40833 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Jason Parker 19 years ago
parent 0264c362b6
commit ec23dcb172

@ -405,7 +405,7 @@ int64_t ast_profile(int i, int64_t delta)
#if defined(__FreeBSD__) #if defined(__FreeBSD__)
#include <machine/cpufunc.h> #include <machine/cpufunc.h>
#elif defined(linux) #elif defined(linux)
static __inline u_int64_t static __inline uint64_t
rdtsc(void) rdtsc(void)
{ {
uint64_t rv; uint64_t rv;
@ -415,7 +415,7 @@ rdtsc(void)
} }
#endif #endif
#else /* supply a dummy function on other platforms */ #else /* supply a dummy function on other platforms */
static __inline u_int64_t static __inline uint64_t
rdtsc(void) rdtsc(void)
{ {
return 0; return 0;

Loading…
Cancel
Save