diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-08-09 15:16:33 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-08-09 15:16:33 +0000 |
commit | 327332d87d8d1ed0d96e1c65b7579672788eb24d (patch) | |
tree | d7d082ea4f1b87d6a74ee7434940542215654173 /gdb/top.c | |
parent | 286cb27aacfaf81827760d86e3c5fa6186125d1f (diff) | |
download | gdb-327332d87d8d1ed0d96e1c65b7579672788eb24d.zip gdb-327332d87d8d1ed0d96e1c65b7579672788eb24d.tar.gz gdb-327332d87d8d1ed0d96e1c65b7579672788eb24d.tar.bz2 |
* top.c (target_output_hook): Really make it match defs.h (char *
is not the same as unsigned char *).
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -381,7 +381,7 @@ void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream)); /* Called when the target says something to the host, which may want to appear in a different window. */ -void (*target_output_hook) PARAMS ((unsigned char *)); +void (*target_output_hook) PARAMS ((char *)); /* Called from print_frame_info to list the line we stopped in. */ |