diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-08 20:37:27 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-08 20:37:27 -0400 |
commit | 550e9289ab4f7ec1092a9c0ee202bbe0ba7fb9f5 (patch) | |
tree | 49d7c3cfcf51f349b515d80feeebaee98a6f46ad /gdb/infrun.h | |
parent | 9ef1d5f4c9760ceabd6807ee886a00967a9dc22d (diff) | |
download | fsf-binutils-gdb-550e9289ab4f7ec1092a9c0ee202bbe0ba7fb9f5.zip fsf-binutils-gdb-550e9289ab4f7ec1092a9c0ee202bbe0ba7fb9f5.tar.gz fsf-binutils-gdb-550e9289ab4f7ec1092a9c0ee202bbe0ba7fb9f5.tar.bz2 |
gdb: add missing space in infrun_debug_printf
gdb/ChangeLog:
* infrun.h (infrun_debug_printf): Add missing space.
Change-Id: I476096a098451ff2019ab38caa41ebfef0e04a1c
Diffstat (limited to 'gdb/infrun.h')
-rw-r--r-- | gdb/infrun.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |