aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 035c683b56..0c425681a4 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -106,12 +106,13 @@ AC_DEFUN([AC_ETHEREAL_CHECK_64BIT_FORMAT],
# ifdef HAVE_INTTYPES_H
#include <inttypes.h>
# endif
+ #include <glib.h>
#include <stdio.h>
#include <sys/types.h>
main()
{
- u_int64_t t = 1;
+ guint64 t = 1;
char strbuf[16+1];
sprintf(strbuf, "%016$1x", t << 32);
if (strcmp(strbuf, "0000000100000000") == 0)