diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2002-08-24 17:04:33 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2002-08-24 17:04:33 +0000 |
commit | 297d1607779327c07b70f8b008626a8b5e3af144 (patch) | |
tree | 5901dd6da1ca0cca0397f4f63f5d6927ea753646 /gdb/tui/tui.h | |
parent | 3e752b0491df868a89f370a136a0edb94c5081f5 (diff) | |
download | gdb-297d1607779327c07b70f8b008626a8b5e3af144.zip gdb-297d1607779327c07b70f8b008626a8b5e3af144.tar.gz gdb-297d1607779327c07b70f8b008626a8b5e3af144.tar.bz2 |
* tui.c (strcat_to_buf): Use const char* for source item.
(tui_enable): Update the windows if there is a selected frame.
* tui.h (strcat_to_buf): Update prototype.
(strcat_to_buf_with_fmt): Remove.
Diffstat (limited to 'gdb/tui/tui.h')
-rw-r--r-- | gdb/tui/tui.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/tui/tui.h b/gdb/tui/tui.h index d250208..b2ed4aa 100644 --- a/gdb/tui/tui.h +++ b/gdb/tui/tui.h @@ -48,8 +48,7 @@ Opaque (*OpaqueFuncPtr) (va_list); */ typedef OpaqueFuncPtr TuiOpaqueFuncPtr; -extern void strcat_to_buf (char *, int, char *); -extern void strcat_to_buf_with_fmt (char *, int, char *, ...); +extern void strcat_to_buf (char *, int, const char *); /* Types of error returns */ typedef enum |