aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lmp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-09 00:53:17 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-09 00:53:17 +0000
commit4ba230c139d811a8bbc80afa2394ccba99a5f76e (patch)
tree46c05f01afc72970868fef1d1fe412fde89ce251 /epan/dissectors/packet-lmp.c
parentae04f78f19777301733cf0420fc20368a9b7fe5c (diff)
Squelch various signed vs. unsigned warnings by:
making pointers to byte data be "guint8 *" rather than "char *", and making buffers holding byte data arrays of "guint8" rather than arrays of "char"; making pointers to text strings "char *" rather than "guchar *"; appropriately casting pointers (cast to "guint8 *" when passing to routines expecting "guint8 *" or when assigning to "guint8 *"); making port-number preferences "guint"; making enum preferences "gint"; making hf_ variables "int". Clean up white space. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14884 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-lmp.c')
-rw-r--r--epan/dissectors/packet-lmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-lmp.c b/epan/dissectors/packet-lmp.c
index 5297f2b8a2..7dc51b05f7 100644
--- a/epan/dissectors/packet-lmp.c
+++ b/epan/dissectors/packet-lmp.c
@@ -63,8 +63,8 @@
static int proto_lmp = -1;
#define UDP_PORT_LMP_DEFAULT 701
-static int lmp_udp_port = UDP_PORT_LMP_DEFAULT;
-static int lmp_udp_port_config = UDP_PORT_LMP_DEFAULT;
+static guint lmp_udp_port = UDP_PORT_LMP_DEFAULT;
+static guint lmp_udp_port_config = UDP_PORT_LMP_DEFAULT;
static dissector_handle_t lmp_handle;