summaryrefslogtreecommitdiff
path: root/packet-atalk.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2003-09-21 20:06:02 +0000
committerGerald Combs <gerald@wireshark.org>2003-09-21 20:06:02 +0000
commitd47426ec5822554b4a28686c10f15898caba0ca1 (patch)
treeeb7cc6eac2585f715dbb4a394ad9c3328b495a77 /packet-atalk.c
parent21fe8b2187ff1fa2c55133b6dca73e104d9b8bff (diff)
downloadwireshark-d47426ec5822554b4a28686c10f15898caba0ca1.tar.gz
Remove a bunch of duplicate semicolons.
svn path=/trunk/; revision=8509
Diffstat (limited to 'packet-atalk.c')
-rw-r--r--packet-atalk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-atalk.c b/packet-atalk.c
index f4267d2e22..05d9a317d4 100644
--- a/packet-atalk.c
+++ b/packet-atalk.c
@@ -2,7 +2,7 @@
* Routines for AppleTalk packet disassembly: LLAP, DDP, NBP, ATP, ASP,
* RTMP.
*
- * $Id: packet-atalk.c,v 1.89 2003/08/28 04:19:28 guy Exp $
+ * $Id: packet-atalk.c,v 1.90 2003/09/21 20:05:59 gerald Exp $
*
* Simon Wilkinson <sxw@dcs.ed.ac.uk>
*
@@ -1266,7 +1266,7 @@ dissect_asp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case ASPFUNC_CMD:
case ASPFUNC_WRITE:
proto_item_set_len(asp_tree, 4);
- aspinfo->code = tvb_get_ntohl(tvb, offset);;
+ aspinfo->code = tvb_get_ntohl(tvb, offset);
proto_tree_add_item(asp_tree, hf_asp_error, tvb, offset, 4, FALSE);
offset += 4;
len = tvb_reported_length_remaining(tvb,offset);