diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/nat/fork-inferior.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a08c781..85ee3cf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2017-06-17 Simon Marchi <simon.marchi@ericsson.com> + * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF. + +2017-06-17 Simon Marchi <simon.marchi@ericsson.com> + * configure: Re-generate. * warning.m4 (build_warnings): Add -Wno-mismatched-tags. diff --git a/gdb/nat/fork-inferior.h b/gdb/nat/fork-inferior.h index 10e3832..d369cff 100644 --- a/gdb/nat/fork-inferior.h +++ b/gdb/nat/fork-inferior.h @@ -95,7 +95,7 @@ extern void gdb_flush_out_err (); (i.e., when the "traceme_fun" callback is called on fork_inferior) and bail out. This function does not return. */ extern void trace_start_error (const char *fmt, ...) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 2); /* Like "trace_start_error", but the error message is constructed by combining STRING with the system error message for errno. This |