aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-05-05 09:40:24 +0000
committerGuy Harris <guy@alum.mit.edu>2005-05-05 09:40:24 +0000
commit73cad260c54f954ebaca2bf59df3479343438388 (patch)
tree3a875a42b4221db7aa9ce25269bfc57cb0de1131 /epan/to_str.h
parentfe5561715ba5d40be347435c39047dd9aa091c10 (diff)
"oid_to_str()" and "oid_to_str_buf()" don't modify what the "oid"
argument points to, so make it a "const" pointer. svn path=/trunk/; revision=14311
Diffstat (limited to 'epan/to_str.h')
-rw-r--r--epan/to_str.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/to_str.h b/epan/to_str.h
index 1f030bd36d..15c9aae813 100644
--- a/epan/to_str.h
+++ b/epan/to_str.h
@@ -69,8 +69,8 @@ extern gchar* abs_time_secs_to_str(time_t);
extern void display_signed_time(gchar *, int, gint32, gint32, time_res_t);
extern gchar* rel_time_to_str(nstime_t*);
extern gchar* rel_time_to_secs_str(nstime_t*);
-extern gchar* oid_to_str(guint8*, gint);
-extern gchar* oid_to_str_buf(guint8*, gint, gchar*);
+extern gchar* oid_to_str(const guint8*, gint);
+extern gchar* oid_to_str_buf(const guint8*, gint, gchar*);
extern char *other_decode_bitfield_value(char *buf, guint32 val, guint32 mask,