diff options
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 17d70a6..0cbd2c6 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -145,15 +145,15 @@ static int trace_buffer_size = -1; /* Textual notes applying to the current and/or future trace runs. */ -char *trace_user = NULL; +static char *trace_user = NULL; /* Textual notes applying to the current and/or future trace runs. */ -char *trace_notes = NULL; +static char *trace_notes = NULL; /* Textual notes applying to the stopping of a trace. */ -char *trace_stop_notes = NULL; +static char *trace_stop_notes = NULL; /* support routines */ |