aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-bvlc.c2
-rw-r--r--epan/dissectors/packet-h264.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-bvlc.c b/epan/dissectors/packet-bvlc.c
index 09f5b4b351..23bbe6bd76 100644
--- a/epan/dissectors/packet-bvlc.c
+++ b/epan/dissectors/packet-bvlc.c
@@ -426,7 +426,7 @@ proto_register_bvlc(void)
void
proto_reg_handoff_bvlc(void)
{
- static int bvlc_initialized = FALSE;
+ static gboolean bvlc_initialized = FALSE;
static dissector_handle_t bvlc_handle;
static guint additional_bvlc_udp_port;
diff --git a/epan/dissectors/packet-h264.c b/epan/dissectors/packet-h264.c
index 45ac4c1ccc..da8e3b110f 100644
--- a/epan/dissectors/packet-h264.c
+++ b/epan/dissectors/packet-h264.c
@@ -1817,7 +1817,7 @@ proto_reg_handoff_h264(void)
{
static dissector_handle_t h264_handle;
static guint dynamic_payload_type;
- static int h264_prefs_initialized = FALSE;
+ static gboolean h264_prefs_initialized = FALSE;
if (!h264_prefs_initialized) {
dissector_handle_t h264_name_handle;
@@ -1845,7 +1845,7 @@ proto_reg_handoff_h264(void)
}
}
-/* this format is require because a script is used to build the C function
+/* this format is required because a script is used to build the C function
that calls all the protocol registration.
*/