diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-05-01 05:39:06 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-05-01 05:39:06 +0000 |
commit | edbaefb975d91b2f522341c93b0e96b7bb79e66d (patch) | |
tree | 3ef8c5d6353c44ee55262586bde2ff627f3318e8 /gtkpacket.c | |
parent | 77e276e6171d8715ac954a5cb62746c4ce42c922 (diff) | |
download | wireshark-edbaefb975d91b2f522341c93b0e96b7bb79e66d.tar.gz wireshark-edbaefb975d91b2f522341c93b0e96b7bb79e66d.tar.bz2 wireshark-edbaefb975d91b2f522341c93b0e96b7bb79e66d.zip |
Changed variable type of argument 'pd' in hex printing routine to match
prototype.
svn path=/trunk/; revision=254
Diffstat (limited to 'gtkpacket.c')
-rw-r--r-- | gtkpacket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtkpacket.c b/gtkpacket.c index be1911e2cc..35b3c34130 100644 --- a/gtkpacket.c +++ b/gtkpacket.c @@ -1,7 +1,7 @@ /* gtkpacket.c * Routines for GTK+ packet display * - * $Id: gtkpacket.c,v 1.4 1999/04/16 18:39:07 gram Exp $ + * $Id: gtkpacket.c,v 1.5 1999/05/01 05:39:06 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -55,7 +55,7 @@ extern GtkWidget *byte_view; extern GdkFont *m_r_font, *m_b_font; void -packet_hex_print(GtkText *bv, guchar *pd, gint len, gint bstart, gint blen) { +packet_hex_print(GtkText *bv, guint8 *pd, gint len, gint bstart, gint blen) { gint i = 0, j, k, cur; gchar line[128], hexchars[] = "0123456789abcdef"; GdkFont *cur_font, *new_font; |