From b1e2b33c5258f1cefcee55116ac5d049478c804d Mon Sep 17 00:00:00 2001 From: Cristian Rodríguez Date: Tue, 2 Apr 2013 04:02:58 -0300 Subject: Add some extra __attribute__ ((format)) s --- src/shared/log.h | 6 +++--- src/shared/util.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/shared') diff --git a/src/shared/log.h b/src/shared/log.h index 9aafcb4100..5fc89880ad 100644 --- a/src/shared/log.h +++ b/src/shared/log.h @@ -83,7 +83,7 @@ int log_metav( int line, const char *func, const char *format, - va_list ap); + va_list ap) _printf_attr_(5,0); int log_meta_object( int level, @@ -102,14 +102,14 @@ int log_metav_object( const char *object_name, const char *object, const char *format, - va_list ap); + va_list ap) _printf_attr_(7,0); int log_struct_internal( int level, const char *file, int line, const char *func, - const char *format, ...) _sentinel_; + const char *format, ...) _printf_attr_(5,0) _sentinel_; int log_oom_internal( const char *file, diff --git a/src/shared/util.h b/src/shared/util.h index 69b717ed93..68e87da7cd 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -361,8 +361,8 @@ int pipe_eof(int fd); cpu_set_t* cpu_set_malloc(unsigned *ncpus); -int status_vprintf(const char *status, bool ellipse, bool ephemeral, const char *format, va_list ap); -int status_printf(const char *status, bool ellipse, bool ephemeral, const char *format, ...); +int status_vprintf(const char *status, bool ellipse, bool ephemeral, const char *format, va_list ap) _printf_attr_(4,0); +int status_printf(const char *status, bool ellipse, bool ephemeral, const char *format, ...) _printf_attr_(4,5); int status_welcome(void); int fd_columns(int fd); -- cgit v1.2.3-54-g00ecf