aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-igrp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-05-12 15:23:27 -0700
committerGuy Harris <guy@alum.mit.edu>2015-05-12 22:23:50 +0000
commit1e4aa6cbcdfe1be5efe4cc346824b59418c834a0 (patch)
tree58ca3a98d906229fd96ec2b1fe13790894b2c4d2 /epan/dissectors/packet-igrp.c
parent613d4f385c0e9911b167985de88932a0e0798f65 (diff)
Remove trailing whitespace.
Change-Id: I7be78c8759255f14efd1b794bfefad9a18428670 Reviewed-on: https://code.wireshark.org/review/8444 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-igrp.c')
-rw-r--r--epan/dissectors/packet-igrp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-igrp.c b/epan/dissectors/packet-igrp.c
index 9ff2bb449b..b185ddf0fb 100644
--- a/epan/dissectors/packet-igrp.c
+++ b/epan/dissectors/packet-igrp.c
@@ -174,14 +174,14 @@ static void dissect_vektor_igrp (tvbuff_t *tvb, proto_tree *igrp_vektor_tree, gu
} else {
/*
* System or exterior route; the three bytes in the vector are
- * the three high-order bytes, and the low-order byte is 0.
+ * the three high-order bytes, and the low-order byte is 0.
*/
addr.addr_bytes[0]=tvb_get_guint8(tvb,0);
addr.addr_bytes[1]=tvb_get_guint8(tvb,1);
addr.addr_bytes[2]=tvb_get_guint8(tvb,2);
addr.addr_bytes[3]=0;
- }
-
+ }
+
SET_ADDRESS(&ip_addr, AT_IPv4, 4, &addr);
igrp_vektor_tree = proto_tree_add_subtree_format(igrp_vektor_tree, tvb, 0 ,14,
ett_igrp_net, NULL, "Entry for network %s", address_to_str(wmem_packet_scope(), &ip_addr));