From 09ef5a05e759d7b34eb6eb8656446928fb2431dd Mon Sep 17 00:00:00 2001 From: guy Date: Fri, 8 Oct 2004 16:40:36 +0000 Subject: [PATCH] Force 4294967295 to be unsigned, to squelch a compiler warning. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12238 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-diameter-defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-diameter-defs.h b/epan/dissectors/packet-diameter-defs.h index 37dd7035a8..8b99fee246 100644 --- a/epan/dissectors/packet-diameter-defs.h +++ b/epan/dissectors/packet-diameter-defs.h @@ -353,7 +353,7 @@ static const value_string diameter_application_id_vals[] = { {16777216, "3GPP Cx"}, {16777217, "3GPP Sh"}, {16777218, "3GPP Rf/Ro"}, - {4294967295, "Relay Application"}, + {4294967295U, "Relay Application"}, {0, NULL} -- 2.34.1