aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-artnet.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 /epan/dissectors/packet-artnet.c
parent90c8f5dde0f90e508819918cb5fba86f9735716f (diff)
Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)
svn path=/trunk/; revision=54314
Diffstat (limited to 'epan/dissectors/packet-artnet.c')
-rw-r--r--epan/dissectors/packet-artnet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-artnet.c b/epan/dissectors/packet-artnet.c
index 71ea5d053b..6bab2b4b20 100644
--- a/epan/dissectors/packet-artnet.c
+++ b/epan/dissectors/packet-artnet.c
@@ -3141,7 +3141,7 @@ dissect_artnet_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *d
/* Check the 8 byte header "Art-Net\0" = 0x4172742d4e7400*/
qword = tvb_get_ntoh64(tvb,0);
- if(qword != G_GINT64_CONSTANT (0x4172742d4e7400U))
+ if(qword != G_GUINT64_CONSTANT (0x4172742d4e7400))
return FALSE;
/* if the header matches, dissect it */