aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-quake3.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-09-23 01:10:45 +0000
committerBill Meier <wmeier@newsguy.com>2008-09-23 01:10:45 +0000
commit65e12518467af105d03d07557378b3b91a31b8de (patch)
treeecb206e08f6e80af3ae9b13fd24938ac2482e8eb /epan/dissectors/packet-quake3.c
parent1a7111b6032ce5736d646a033b98d38fc1489742 (diff)
Minor change: use guint for prefs port variables.
svn path=/trunk/; revision=26253
Diffstat (limited to 'epan/dissectors/packet-quake3.c')
-rw-r--r--epan/dissectors/packet-quake3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-quake3.c b/epan/dissectors/packet-quake3.c
index 111cb1e8ce..b3f60d5b10 100644
--- a/epan/dissectors/packet-quake3.c
+++ b/epan/dissectors/packet-quake3.c
@@ -77,8 +77,8 @@ static dissector_handle_t data_handle;
#define QUAKE3_SERVER_PORT 27960
#define QUAKE3_MASTER_PORT 27950
-static unsigned int gbl_quake3_server_port=QUAKE3_SERVER_PORT;
-static unsigned int gbl_quake3_master_port=QUAKE3_MASTER_PORT;
+static guint gbl_quake3_server_port=QUAKE3_SERVER_PORT;
+static guint gbl_quake3_master_port=QUAKE3_MASTER_PORT;
static const value_string names_direction[] = {
@@ -546,8 +546,8 @@ proto_reg_handoff_quake3(void)
{
static gboolean initialized=FALSE;
static dissector_handle_t quake3_handle;
- static int server_port;
- static int master_port;
+ static guint server_port;
+ static guint master_port;
int i;
if (!initialized) {