diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-12-04 00:45:39 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-12-04 00:45:39 +0000 |
commit | 64bc566ea87ea13d92bf505ed17245e0d18eae69 (patch) | |
tree | 6ce663d9714ee34c06a81a25dbc833864b67ea98 /filters.h | |
parent | 78191a09b5cd5840a8cc94879094f63b808ba1e8 (diff) | |
download | wireshark-64bc566ea87ea13d92bf505ed17245e0d18eae69.tar.gz wireshark-64bc566ea87ea13d92bf505ed17245e0d18eae69.tar.bz2 wireshark-64bc566ea87ea13d92bf505ed17245e0d18eae69.zip |
In GTK+ 2.x, "gtk_entry_get_text()" returns a "const gchar *"; assign
its value to pointer-to-const variables.
svn path=/trunk/; revision=9161
Diffstat (limited to 'filters.h')
-rw-r--r-- | filters.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* filters.c * Declarations of routines for reading and writing the filters file. * - * $Id: filters.h,v 1.3 2002/08/28 21:00:06 jmayer Exp $ + * $Id: filters.h,v 1.4 2003/12/04 00:45:37 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -59,8 +59,8 @@ GList *get_filter_list_first(filter_list_type_t list); * Add a new filter to the end of a list. * Returns a pointer to the newly-added entry. */ -GList *add_to_filter_list(filter_list_type_t list, char *name, - char *expression); +GList *add_to_filter_list(filter_list_type_t list, const char *name, + const char *expression); /* * Remove a filter from a list. |