aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-12-11 07:14:52 +0000
committerGuy Harris <guy@alum.mit.edu>2009-12-11 07:14:52 +0000
commit229b262e1581af69ef13db11199d57105742c05d (patch)
tree94fa07746329d534204d34a73d8dae21ea48dc94 /epan/to_str.c
parent141e1fb3b3fbcfce13d83edfa5dd119b9425e05a (diff)
Squelch warnings.
svn path=/trunk/; revision=31236
Diffstat (limited to 'epan/to_str.c')
-rw-r--r--epan/to_str.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/to_str.c b/epan/to_str.c
index fea594acc1..0cd9937602 100644
--- a/epan/to_str.c
+++ b/epan/to_str.c
@@ -310,7 +310,7 @@ gchar *
abs_time_to_str(nstime_t *abs_time, gboolean show_as_utc)
{
struct tm *tmp;
- char *zonename;
+ const char *zonename;
gchar *buf;
#ifdef _MSC_VER
@@ -355,7 +355,7 @@ gchar *
abs_time_secs_to_str(time_t abs_time, gboolean show_as_utc)
{
struct tm *tmp;
- char *zonename;
+ const char *zonename;
gchar *buf;
#ifdef _MSC_VER