diff options
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index 690f87c..bca32a9 100644 --- a/gdb/utils.c +++ b/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 */ |