aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-beep.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-beep.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-beep.c')
-rw-r--r--epan/dissectors/packet-beep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-beep.c b/epan/dissectors/packet-beep.c
index 7e9a38dbee..87ef60278c 100644
--- a/epan/dissectors/packet-beep.c
+++ b/epan/dissectors/packet-beep.c
@@ -47,7 +47,7 @@
void proto_reg_handoff_beep(void);
-static int global_beep_tcp_port = TCP_PORT_BEEP;
+static guint global_beep_tcp_port = TCP_PORT_BEEP;
static int global_beep_strict_term = TRUE;
static int proto_beep = -1;
@@ -96,7 +96,7 @@ static int ett_mime_header = -1;
static int ett_header = -1;
static int ett_trailer = -1;
-static unsigned int tcp_port = 0;
+static guint tcp_port = 0;
/* Get the state of the more flag ... */