aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tap.h
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2015-08-12 13:24:06 +0200
committerAnders Broman <a.broman58@gmail.com>2015-08-12 11:27:38 +0000
commita3e3d603101cbf6fe4d2ece2c0ae1ae999a0a30f (patch)
treebf4b2bbd55eedea4a0d0387bc870ead0882ee02b /epan/tap.h
parentcd16301b36257f52ba3d0ca980e712259e34076e (diff)
Align comments
Change-Id: Iab59ba51700b018337552018c76e30dcbd41f3f6 Reviewed-on: https://code.wireshark.org/review/9993 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/tap.h')
-rw-r--r--epan/tap.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/tap.h b/epan/tap.h
index fa801c2a49..7f2002af17 100644
--- a/epan/tap.h
+++ b/epan/tap.h
@@ -37,13 +37,13 @@ typedef void (*tap_draw_cb)(void *tapdata);
/**
* Flags to indicate what a tap listener's packet routine requires.
*/
-#define TL_REQUIRES_NOTHING 0x00000000 /**< nothing */
-#define TL_REQUIRES_PROTO_TREE 0x00000001 /**< full protocol tree */
-#define TL_REQUIRES_COLUMNS 0x00000002 /**< columns */
+#define TL_REQUIRES_NOTHING 0x00000000 /**< nothing */
+#define TL_REQUIRES_PROTO_TREE 0x00000001 /**< full protocol tree */
+#define TL_REQUIRES_COLUMNS 0x00000002 /**< columns */
#define TL_REQUIRES_ERROR_PACKETS 0x00000004 /**< include packet even if pinfo->flags.in_error_pkt is set */
/** Flags to indicate what the tap listener does */
-#define TL_IS_DISSECTOR_HELPER 0x00000008 /**< tap helps a dissector do work
- ** but does not, itself, require dissection */
+#define TL_IS_DISSECTOR_HELPER 0x00000008 /**< tap helps a dissector do work
+ ** but does not, itself, require dissection */
#ifdef HAVE_PLUGINS
/** Register tap plugin type with the plugin system.