Fix indentation
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>
Sat, 30 Jul 2016 07:43:23 +0000 (08:43 +0100)
committerJoão Valverde <j@v6e.pt>
Sun, 31 Jul 2016 03:58:12 +0000 (03:58 +0000)
Change-Id: I6b0c7cda7130f1912b9a83991b43f234ff9d9cec
Reviewed-on: https://code.wireshark.org/review/16797
Reviewed-by: João Valverde <j@v6e.pt>
epan/ftypes/ftype-ipv6.c
epan/ftypes/ftypes.h

index 432f3f0f41d9228ea436cd2db3bb7e2182bc1e44..44e093e702edc858d88899eb1e299780dad853af 100644 (file)
@@ -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 */
index 9eb86ac0f2fa0503ddcbc9c9d634c3d963c9f9d6..99153c8fa6a29432b5c5d163ca8a6daae851c54c 100644 (file)
@@ -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;