aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-22 05:34:44 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-22 05:34:44 +0000
commit6fd9ccad7cd28d08ecf96894b224661349fc6707 (patch)
tree4e098a29672a5df159756eb52d3e56ee365dd0ed
parent8891da27bb54dd8d317317d840b298c81f2870e5 (diff)
Solaris didn't like this.
Let's just go ahead and make this match every other uintXX_t in Asterisk. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40833 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/asterisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 3898ccb4a..14b9f77e6 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -405,7 +405,7 @@ int64_t ast_profile(int i, int64_t delta)
#if defined(__FreeBSD__)
#include <machine/cpufunc.h>
#elif defined(linux)
-static __inline u_int64_t
+static __inline uint64_t
rdtsc(void)
{
uint64_t rv;
@@ -415,7 +415,7 @@ rdtsc(void)
}
#endif
#else /* supply a dummy function on other platforms */
-static __inline u_int64_t
+static __inline uint64_t
rdtsc(void)
{
return 0;