From: Tom Tromey Date: Sun, 9 Jul 2023 15:00:42 +0000 (-0600) Subject: Constify tfile_interp_line X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3a05ac8957b3e654f9f04aa7ae3a1bd24e496b7;p=binutils-gdb.git Constify tfile_interp_line This adds 'const' to tfile_interp_line. Reviewed-by: Keith Seitz --- diff --git a/gdb/tracefile-tfile.c b/gdb/tracefile-tfile.c index d3304b0b355..59055e7ea1a 100644 --- a/gdb/tracefile-tfile.c +++ b/gdb/tracefile-tfile.c @@ -424,7 +424,7 @@ int trace_regblock_size; static std::string trace_tdesc; static void tfile_append_tdesc_line (const char *line); -static void tfile_interp_line (char *line, +static void tfile_interp_line (const char *line, struct uploaded_tp **utpp, struct uploaded_tsv **utsvp); @@ -574,15 +574,15 @@ tfile_target_open (const char *arg, int from_tty) file. */ static void -tfile_interp_line (char *line, struct uploaded_tp **utpp, +tfile_interp_line (const char *line, struct uploaded_tp **utpp, struct uploaded_tsv **utsvp) { - char *p = line; + const char *p = line; if (startswith (p, "R ")) { p += strlen ("R "); - trace_regblock_size = strtol (p, &p, 16); + trace_regblock_size = strtol (p, nullptr, 16); } else if (startswith (p, "status ")) {