aboutsummaryrefslogtreecommitdiffstats
path: root/tap_dfilter_dlg.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-05 20:59:08 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-05 20:59:08 +0000
commit4e1f4b18abdec1658e835a77a9de8be87c965142 (patch)
tree0aeebf0f2c4ec7ea3813d2f0b9e10f3f77e851cd /tap_dfilter_dlg.h
parente6856b69f3ebf85a1a37cb7c7a508f2be41fb1fe (diff)
More char -> const char warning fixes.
Removed (very few) casts that only change the warning message but don't remove it (with gcc-4). svn path=/trunk/; revision=15227
Diffstat (limited to 'tap_dfilter_dlg.h')
-rw-r--r--tap_dfilter_dlg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tap_dfilter_dlg.h b/tap_dfilter_dlg.h
index 0116eae595..35331b9b98 100644
--- a/tap_dfilter_dlg.h
+++ b/tap_dfilter_dlg.h
@@ -52,10 +52,10 @@
*/
typedef struct _tap_dfilter_dlg {
- char *win_title; /* title */
- char *init_string; /* the string to call the tap without a filter via "-z" option */
+ const char *win_title; /* title */
+ const char *init_string; /* the string to call the tap without a filter via "-z" option */
void (* tap_init_cb)(char *); /* callback to init function of the tap */
- gint index; /* initiate this value always with "-1" */
+ gint index; /* initiate this value always with "-1" */
} tap_dfilter_dlg;
/* This will update the titles of the dialog windows when we load a new capture file. */