diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-04-17 19:39:11 +0000 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-04-17 19:39:11 +0000 |
commit | 101489f38612741137811516589c6fe53af43c93 (patch) | |
tree | f829a194c35f7f90bb75ed1c4baab37ae0faf94a /epan/uat.c | |
parent | f9dce307d8b144c22da8cfaac50023171cfe739c (diff) | |
download | wireshark-101489f38612741137811516589c6fe53af43c93.tar.gz wireshark-101489f38612741137811516589c6fe53af43c93.tar.bz2 wireshark-101489f38612741137811516589c6fe53af43c93.zip |
Use also const char to uat_save (identical to uat_load)
svn path=/trunk/; revision=48902
Diffstat (limited to 'epan/uat.c')
-rw-r--r-- | epan/uat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/uat.c b/epan/uat.c index f1abbb6ccb..87c90b27f1 100644 --- a/epan/uat.c +++ b/epan/uat.c @@ -242,7 +242,7 @@ static void putfld(FILE* fp, void* rec, uat_field_t* f) { } } -gboolean uat_save(uat_t* uat, char** error) { +gboolean uat_save(uat_t* uat, const char** error) { guint i; gchar* fname = uat_get_actual_filename(uat,TRUE); FILE* fp; |