aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nsip.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-nsip.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-nsip.c')
-rw-r--r--epan/dissectors/packet-nsip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-nsip.c b/epan/dissectors/packet-nsip.c
index beca1fa042..526a985a2f 100644
--- a/epan/dissectors/packet-nsip.c
+++ b/epan/dissectors/packet-nsip.c
@@ -46,10 +46,10 @@
#define NSIP_SEP ", " /* Separator string */
#define NSIP_LITTLE_ENDIAN 0
-static int nsip_udp_port1 = NSIP_UDP_PORT1;
-static int nsip_udp_port2 = NSIP_UDP_PORT2;
-static int global_nsip_udp_port1 = NSIP_UDP_PORT1;
-static int global_nsip_udp_port2 = NSIP_UDP_PORT2;
+static guint nsip_udp_port1 = NSIP_UDP_PORT1;
+static guint nsip_udp_port2 = NSIP_UDP_PORT2;
+static guint global_nsip_udp_port1 = NSIP_UDP_PORT1;
+static guint global_nsip_udp_port2 = NSIP_UDP_PORT2;
void proto_reg_handoff_nsip(void);