aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/proto_draw.c
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 /gtk/proto_draw.c
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 'gtk/proto_draw.c')
-rw-r--r--gtk/proto_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/proto_draw.c b/gtk/proto_draw.c
index 2fca557d65..a9025ef39b 100644
--- a/gtk/proto_draw.c
+++ b/gtk/proto_draw.c
@@ -1019,8 +1019,8 @@ packet_hex_print_common(GtkTextView *bv, const guint8 *pd, int len, int bstart,
#else
GtkTextBuffer *buf = gtk_text_view_get_buffer(GTK_TEXT_VIEW(bv));
GtkTextIter iter;
- char *revstyle;
- gchar *convline;
+ const char *revstyle;
+ const gchar *convline;
gsize newsize;
GtkTextMark *mark = NULL;
#endif