Align comments
authorAndersBroman <anders.broman@ericsson.com>
Wed, 12 Aug 2015 11:24:06 +0000 (13:24 +0200)
committerAnders Broman <a.broman58@gmail.com>
Wed, 12 Aug 2015 11:27:38 +0000 (11:27 +0000)
Change-Id: Iab59ba51700b018337552018c76e30dcbd41f3f6
Reviewed-on: https://code.wireshark.org/review/9993
Reviewed-by: Anders Broman <a.broman58@gmail.com>
epan/tap.h

index fa801c2a49439377f3c59c4d56c4932df65c4735..7f2002af17d4c11126f13fbf4f18bfcb7418a28a 100644 (file)
@@ -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.