diff options
author | Tom Tromey <tromey@redhat.com> | 2010-03-02 21:46:28 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-03-02 21:46:28 +0000 |
commit | a58d7472bda022d9395afda54c17a2d48df81b1f (patch) | |
tree | e2c5110b42e88e7b20b667389daa63f4b6a2af2d /gdb/defs.h | |
parent | ce50d78b1002f7b7afa72dee74c1972e6ff36cbb (diff) | |
download | gdb-a58d7472bda022d9395afda54c17a2d48df81b1f.zip gdb-a58d7472bda022d9395afda54c17a2d48df81b1f.tar.gz gdb-a58d7472bda022d9395afda54c17a2d48df81b1f.tar.bz2 |
* mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
* defs.h (read_command_lines_1): Add missing 'void'.
* cli/cli-script.c (recurse_read_control_structure): Add missing
'void'.
(read_next_line): Likewise.
(read_command_lines_1): Likewise.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -707,7 +707,7 @@ struct command_line }; extern struct command_line *read_command_lines (char *, int, int); -extern struct command_line *read_command_lines_1 (char * (*) (), int); +extern struct command_line *read_command_lines_1 (char * (*) (void), int); extern void free_command_lines (struct command_line **); |