| Index: gdb/reverse.c
|
| diff --git a/gdb/reverse.c b/gdb/reverse.c
|
| index 07c7de428c08f80c452fdf3368d5071e7b5d652d..ca51d894b72b1a741698b7898faecc9f4e316e33 100644
|
| --- a/gdb/reverse.c
|
| +++ b/gdb/reverse.c
|
| @@ -1,6 +1,6 @@
|
| /* Reverse execution and reverse debugging.
|
|
|
| - Copyright (C) 2006-2012 Free Software Foundation, Inc.
|
| + Copyright (C) 2006-2013 Free Software Foundation, Inc.
|
|
|
| This file is part of GDB.
|
|
|
| @@ -18,7 +18,7 @@
|
| along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
| #include "defs.h"
|
| -#include "gdb_string.h"
|
| +#include <string.h>
|
| #include "target.h"
|
| #include "top.h"
|
| #include "cli/cli-cmds.h"
|
| @@ -259,7 +259,7 @@ goto_bookmark_command (char *args, int from_tty)
|
| || strncmp (args, "end", strlen ("end")) == 0)
|
| {
|
| /* Special case. Give target opportunity to handle. */
|
| - target_goto_bookmark (args, from_tty);
|
| + target_goto_bookmark ((gdb_byte *) args, from_tty);
|
| return;
|
| }
|
|
|
| @@ -268,7 +268,7 @@ goto_bookmark_command (char *args, int from_tty)
|
| /* Special case -- quoted string. Pass on to target. */
|
| if (args[strlen (args) - 1] != args[0])
|
| error (_("Unbalanced quotes: %s"), args);
|
| - target_goto_bookmark (args, from_tty);
|
| + target_goto_bookmark ((gdb_byte *) args, from_tty);
|
| return;
|
| }
|
|
|
|
|