summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-07-30 08:43:23 +0100
committerJoão Valverde <j@v6e.pt>2016-07-31 03:58:12 +0000
commit63f9ecbdd51c5163d58460d79f2dd858960babe8 (patch)
treecdf4aa3871d8f4087858a8745f9ad19ea62618f3
parent52ff3ae72906fffbfd07b5c0be43ee5f65193b81 (diff)
downloadwireshark-63f9ecbdd51c5163d58460d79f2dd858960babe8.tar.gz
Fix indentation
Change-Id: I6b0c7cda7130f1912b9a83991b43f234ff9d9cec Reviewed-on: https://code.wireshark.org/review/16797 Reviewed-by: João Valverde <j@v6e.pt>
-rw-r--r--epan/ftypes/ftype-ipv6.c6
-rw-r--r--epan/ftypes/ftypes.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/epan/ftypes/ftype-ipv6.c b/epan/ftypes/ftype-ipv6.c
index 432f3f0f41..44e093e702 100644
--- a/epan/ftypes/ftype-ipv6.c
+++ b/epan/ftypes/ftype-ipv6.c
@@ -121,7 +121,7 @@ cmp_compare(const fvalue_t *fv_a, const fvalue_t *fv_b)
int pos = 0;
prefix = MIN(a->prefix, b->prefix); /* MIN() like IPv4 */
- prefix = MIN(prefix, 128); /* sanitize, max prefix is 128 */
+ prefix = MIN(prefix, 128); /* sanitize, max prefix is 128 */
while (prefix >= 8) {
gint byte_a = (gint) (a->addr.bytes[pos]);
@@ -228,8 +228,8 @@ ftype_register_ipv6(void)
"FT_IPv6", /* name */
"IPv6 address", /* pretty_name */
FT_IPv6_LEN, /* wire_size */
- NULL, /* new_value */
- NULL, /* free_value */
+ NULL, /* new_value */
+ NULL, /* free_value */
ipv6_from_unparsed, /* val_from_unparsed */
NULL, /* val_from_string */
ipv6_to_repr, /* val_to_string_repr */
diff --git a/epan/ftypes/ftypes.h b/epan/ftypes/ftypes.h
index 9eb86ac0f2..99153c8fa6 100644
--- a/epan/ftypes/ftypes.h
+++ b/epan/ftypes/ftypes.h
@@ -221,7 +221,7 @@ typedef struct _fvalue_t {
ipv6_addr_and_prefix ipv6;
e_guid_t guid;
nstime_t time;
- protocol_value_t protocol;
+ protocol_value_t protocol;
GRegex *re;
guint16 sfloat_ieee_11073;
guint32 float_ieee_11073;