summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-h248.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-01-14 17:45:03 +0000
committerGuy Harris <guy@alum.mit.edu>2014-01-14 17:45:03 +0000
commit0a99ee25d5cce63ddbd52215969bae948c7501d3 (patch)
treee84332d4628df3b173adad8cc7cd9ad4213298ae /epan/dissectors/packet-h248.c
parent85ab202c08b3e0c5eafef26f3dddc2c4214b5ac4 (diff)
downloadwireshark-0a99ee25d5cce63ddbd52215969bae948c7501d3.tar.gz
Don't make claims of constness that can't be guaranteed in terms the C
compiler can verify. svn path=/trunk/; revision=54792
Diffstat (limited to 'epan/dissectors/packet-h248.c')
-rw-r--r--epan/dissectors/packet-h248.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h248.c b/epan/dissectors/packet-h248.c
index 6306ed607b..85b5f88c40 100644
--- a/epan/dissectors/packet-h248.c
+++ b/epan/dissectors/packet-h248.c
@@ -1380,7 +1380,7 @@ static gboolean is_pkg_default(guint16 pkgid) {
return s_pkg->is_default;
}
-void h248_register_package(const h248_package_t* pkg, pkg_reg_action reg_action) {
+void h248_register_package(h248_package_t* pkg, pkg_reg_action reg_action) {
h248_package_t *pkg_found = NULL, *pkg_high = NULL, *pkg_low = NULL;
s_h248_package_t *s_pkg = NULL;
value_string *vst;