diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/infrun.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3061bb9..e7e48f0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2021-05-08 Simon Marchi <simon.marchi@polymtl.ca> + + * infrun.h (infrun_debug_printf): Add missing space. + 2021-05-08 Pedro Alves <pedro@palves.net> * linux-nat.c (linux_nat_target::supports_disable_randomization): diff --git a/gdb/infrun.h b/gdb/infrun.h index 220ccc7..7ebb9fc 100644 --- a/gdb/infrun.h +++ b/gdb/infrun.h @@ -34,7 +34,7 @@ extern bool debug_infrun; /* Print an "infrun" debug statement. */ #define infrun_debug_printf(fmt, ...) \ - debug_prefixed_printf_cond (debug_infrun, "infrun",fmt, ##__VA_ARGS__) + debug_prefixed_printf_cond (debug_infrun, "infrun", fmt, ##__VA_ARGS__) /* Print "infrun" start/end debug statements. */ |