From Kaveh R. Ghazi <ghazi@caip.rutgers.edu>:
gdb/ * cli-out.c (cli_field_fmt, cli_message, out_field_fmt): Add ATTR_FORMAT or ATTRIBUTE_FPTR_PRINTF. * complaints.c (vcomplaint): Likewise. * defs.h (xvasprintf, xstrvprintf, verror, vfatal) (internal_verror, internal_vwarning, vwarning) (deprecated_query_hook, deprecated_warning_hook) (deprecated_readline_begin_hook): Likewise. * disasm.c (fprintf_disasm): Likewise. * exceptions.c (throw_it): Likewise. * exceptions.h (throw_verror, throw_vfatal): Likewise. * mi/mi-interp.c (mi_interp_query_hook): Likewise. * mi/mi-out.c (mi_field_fmt, mi_message): Likewise. * tui/tui-hooks.c (tui_query_hook): Likewise. * tui/tui-out.c (tui_field_fmt, tui_message, out_field_fmt): Likewise. * ui-out.c (default_field_fmt, default_message, uo_field_fmt) (uo_message): Likewise. * ui-out.h (ui_out_field_fmt, ui_out_message, field_fmt_ftype) (message_ftype): Likewise. * utils.c (vfprintf_maybe_filtered, internal_vproblem) (defaulted_query, printchar): Likewise. gdb/gdbserver/ * server.h (error, fatal, warning): Add ATTR_FORMAT.
This commit is contained in:
parent
1b9ee6a2f0
commit
bee0189a82
16 changed files with 105 additions and 55 deletions
10
gdb/utils.c
10
gdb/utils.c
|
@ -80,7 +80,7 @@ void (*deprecated_error_begin_hook) (void);
|
|||
/* Prototypes for local functions */
|
||||
|
||||
static void vfprintf_maybe_filtered (struct ui_file *, const char *,
|
||||
va_list, int);
|
||||
va_list, int) ATTR_FORMAT (printf, 2, 0);
|
||||
|
||||
static void fputs_maybe_filtered (const char *, struct ui_file *, int);
|
||||
|
||||
|
@ -693,7 +693,7 @@ struct internal_problem
|
|||
has been reported, and assuming GDB didn't quit, the caller can
|
||||
either allow execution to resume or throw an error. */
|
||||
|
||||
static void
|
||||
static void ATTR_FORMAT (printf, 4, 0)
|
||||
internal_vproblem (struct internal_problem *problem,
|
||||
const char *file, int line, const char *fmt, va_list ap)
|
||||
{
|
||||
|
@ -1236,7 +1236,7 @@ query (const char *ctlstr, ...)
|
|||
ARGS are the arguments passed along with the CTLSTR argument to
|
||||
printf. */
|
||||
|
||||
static int
|
||||
static int ATTR_FORMAT (printf, 1, 0)
|
||||
defaulted_query (const char *ctlstr, const char defchar, va_list args)
|
||||
{
|
||||
int answer;
|
||||
|
@ -1495,8 +1495,8 @@ parse_escape (char **string_ptr)
|
|||
|
||||
static void
|
||||
printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
|
||||
void (*do_fprintf) (struct ui_file *, const char *, ...),
|
||||
struct ui_file *stream, int quoter)
|
||||
void (*do_fprintf) (struct ui_file *, const char *, ...)
|
||||
ATTRIBUTE_FPTR_PRINTF_2, struct ui_file *stream, int quoter)
|
||||
{
|
||||
|
||||
c &= 0xFF; /* Avoid sign bit follies */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue