diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/nat/linux-waitpid.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 88e7a6e..5803abf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2017-09-21 Simon Marchi <simon.marchi@ericsson.com> + * nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF. + +2017-09-21 Simon Marchi <simon.marchi@ericsson.com> + * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF. 2017-09-21 Yao Qi <yao.qi@linaro.org> diff --git a/gdb/nat/linux-waitpid.c b/gdb/nat/linux-waitpid.c index bf5e725..05d1e26 100644 --- a/gdb/nat/linux-waitpid.c +++ b/gdb/nat/linux-waitpid.c @@ -34,7 +34,7 @@ /* Print debugging output based on the format string FORMAT and its parameters. */ -static inline void +static inline void ATTRIBUTE_PRINTF (1,2) linux_debug (const char *format, ...) { #ifdef GDBSERVER |