From 4e1f4b18abdec1658e835a77a9de8be87c965142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Fri, 5 Aug 2005 20:59:08 +0000 Subject: 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 --- tap_dfilter_dlg.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tap_dfilter_dlg.h') 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. */ -- cgit v1.2.3