diff options
Diffstat (limited to 'gdb/cli/cli-logging.c')
-rw-r--r-- | gdb/cli/cli-logging.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cli/cli-logging.c b/gdb/cli/cli-logging.c index 14242e0..ee31659 100644 --- a/gdb/cli/cli-logging.c +++ b/gdb/cli/cli-logging.c @@ -172,7 +172,7 @@ set_logging_off (const char *args, int from_tty) } static void -set_logging_command (char *args, int from_tty) +set_logging_command (const char *args, int from_tty) { printf_unfiltered (_("\"set logging\" lets you log output to a file.\n" "Usage: set logging on [FILENAME]\n" @@ -183,7 +183,7 @@ set_logging_command (char *args, int from_tty) } static void -show_logging_command (char *args, int from_tty) +show_logging_command (const char *args, int from_tty) { if (saved_filename) printf_unfiltered (_("Currently logging to \"%s\".\n"), saved_filename); |