aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-epl.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2024-03-30 10:28:47 -0700
committerGerald Combs <gerald@wireshark.org>2024-03-31 16:09:23 +0000
commit5a9393c646560ad1a1cc3871ad95bab3c8af20ec (patch)
tree3901368af7e5e068a17de326cd4c8c6e4c37cb60 /epan/dissectors/packet-epl.c
parent20046e4a0de610b00a1938374e6cef38df8f92dd (diff)
Switch our boolean preferences to bool
With the aid of a script, convert our boolean preferences from gboolean to bool. Ping #19116
Diffstat (limited to 'epan/dissectors/packet-epl.c')
-rw-r--r--epan/dissectors/packet-epl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-epl.c b/epan/dissectors/packet-epl.c
index eff4a1fb54..56e296a542 100644
--- a/epan/dissectors/packet-epl.c
+++ b/epan/dissectors/packet-epl.c
@@ -1821,11 +1821,11 @@ static expert_field ei_real_length_differs;
static dissector_handle_t epl_handle;
static dissector_handle_t epl_udp_handle;
-static gboolean show_cmd_layer_for_duplicated = FALSE;
-static gboolean show_pdo_meta_info = FALSE;
-static gboolean use_xdc_mappings = TRUE;
-static gboolean interpret_untyped_as_le = TRUE;
-static gboolean use_sdo_mappings = TRUE;
+static bool show_cmd_layer_for_duplicated = false;
+static bool show_pdo_meta_info = false;
+static bool use_xdc_mappings = true;
+static bool interpret_untyped_as_le = true;
+static bool use_sdo_mappings = true;
static gint ett_epl_asnd_sdo_data_reassembled;
@@ -2473,7 +2473,7 @@ cleanup_dissector(void)
}
/* preference whether or not display the SoC flags in info column */
-gboolean show_soc_flags = FALSE;
+bool show_soc_flags = false;
/* Define the tap for epl */
/*static gint epl_tap = -1;*/