summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-05-30 04:03:32 +0000
committerGuy Harris <guy@alum.mit.edu>2008-05-30 04:03:32 +0000
commitffcb64114943c4ff58260c9f9091b38b6365f202 (patch)
treec5f01108009907e722c0cf906859ec736cd9f142 /file.c
parentbe161ba4606520542e562477d15bc71ca111ed95 (diff)
downloadwireshark-ffcb64114943c4ff58260c9f9091b38b6365f202.tar.gz
Again, the err_info returned from wtap_read() and wtap_seek_read() is a
g_mallocated string, so it's not const. Fix a comment to reflect reality (err_info is some additional information about the error returned by Wiretap, e.g. some gory details about the error, mainly useful to developers and support people). svn path=/trunk/; revision=25401
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index ed9c458e06..38e5eda0a0 100644
--- a/file.c
+++ b/file.c
@@ -3787,7 +3787,7 @@ file_rename_error_message(int err)
}
char *
-cf_read_error_message(int err, const gchar *err_info)
+cf_read_error_message(int err, gchar *err_info)
{
static char errmsg_errno[1024+1];