diff options
Diffstat (limited to 'src/gui/gui-buffer.c')
-rw-r--r-- | src/gui/gui-buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index 84aeb528e..27c363442 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -1699,7 +1699,7 @@ gui_buffer_dump_hexa (struct t_gui_buffer *buffer) { /* display line without colors */ message_without_colors = (ptr_line->message) ? - (char *)gui_color_decode ((unsigned char *)ptr_line->message) : NULL; + gui_color_decode (ptr_line->message, NULL) : NULL; log_printf (""); log_printf (" line %d: %s", num_line, |