aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/vwr.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-20 22:39:32 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-20 22:39:32 +0000
commit064082e68a3aa3a5c4fcc58bb2d3e1f7989939d1 (patch)
treedbf3b26c28f19e5be18d0c19f671a3a992aca5c8 /wiretap/vwr.c
parent90c8f5dde0f90e508819918cb5fba86f9735716f (diff)
Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)
svn path=/trunk/; revision=54314
Diffstat (limited to 'wiretap/vwr.c')
-rw-r--r--wiretap/vwr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/wiretap/vwr.c b/wiretap/vwr.c
index dcb99b9b65..149455c1c3 100644
--- a/wiretap/vwr.c
+++ b/wiretap/vwr.c
@@ -35,10 +35,10 @@
/* platform-specific definitions for portability */
/* unsigned long long constants */
-# define NS_IN_US G_GINT64_CONSTANT(1000U) /* nanoseconds-to-microseconds */
-# define NS_IN_SEC G_GINT64_CONSTANT(1000000000U) /* nanoseconds-to-seconds */
-# define US_IN_SEC G_GINT64_CONSTANT(1000000U) /* microseconds-to-seconds */
-# define LL_ZERO G_GINT64_CONSTANT(0U) /* zero in unsigned long long */
+# define NS_IN_US G_GUINT64_CONSTANT(1000) /* nanoseconds-to-microseconds */
+# define NS_IN_SEC G_GUINT64_CONSTANT(1000000000) /* nanoseconds-to-seconds */
+# define US_IN_SEC G_GUINT64_CONSTANT(1000000) /* microseconds-to-seconds */
+# define LL_ZERO G_GUINT64_CONSTANT(0) /* zero in unsigned long long */
/*
* Fetch a 64-bit value in "Corey-endian" form.