From 550e9289ab4f7ec1092a9c0ee202bbe0ba7fb9f5 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sat, 8 May 2021 20:37:27 -0400 Subject: [PATCH] gdb: add missing space in infrun_debug_printf gdb/ChangeLog: * infrun.h (infrun_debug_printf): Add missing space. Change-Id: I476096a098451ff2019ab38caa41ebfef0e04a1c --- gdb/ChangeLog | 4 ++++ gdb/infrun.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3061bb9168c..e7e48f0cc3e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2021-05-08 Simon Marchi + + * infrun.h (infrun_debug_printf): Add missing space. + 2021-05-08 Pedro Alves * linux-nat.c (linux_nat_target::supports_disable_randomization): diff --git a/gdb/infrun.h b/gdb/infrun.h index 220ccc79e8b..7ebb9fc9f4e 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. */ -- 2.30.2