mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 01:27:11 +03:00
bus: _printf_ attributes should be on prototypes not function definitions for non-static functions
This commit is contained in:
parent
b6c631f378
commit
9bfa2c029d
@ -29,7 +29,6 @@
|
||||
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
|
||||
_printf_(2,0)
|
||||
void microhttpd_logger(void *arg, const char *fmt, va_list ap) {
|
||||
_cleanup_free_ char *f;
|
||||
if (asprintf(&f, "microhttpd: %s", fmt) <= 0) {
|
||||
|
@ -250,7 +250,6 @@ finish:
|
||||
return -bus_error_name_to_errno(name);
|
||||
}
|
||||
|
||||
_printf_(3,0)
|
||||
int bus_error_setfv(sd_bus_error *e, const char *name, const char *format, va_list ap) {
|
||||
|
||||
if (!name)
|
||||
@ -464,7 +463,6 @@ _public_ int sd_bus_error_set_errno(sd_bus_error *e, int error) {
|
||||
return -error;
|
||||
}
|
||||
|
||||
_printf_(3,0)
|
||||
int bus_error_set_errnofv(sd_bus_error *e, int error, const char *format, va_list ap) {
|
||||
int r;
|
||||
|
||||
|
@ -24,10 +24,11 @@
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "sd-bus.h"
|
||||
#include "macro.h"
|
||||
|
||||
bool bus_error_is_dirty(sd_bus_error *e);
|
||||
|
||||
const char *bus_error_message(const sd_bus_error *e, int error);
|
||||
|
||||
int bus_error_setfv(sd_bus_error *e, const char *name, const char *format, va_list ap);
|
||||
int bus_error_set_errnofv(sd_bus_error *e, int error, const char *format, va_list ap);
|
||||
int bus_error_setfv(sd_bus_error *e, const char *name, const char *format, va_list ap) _printf_(3,0);
|
||||
int bus_error_set_errnofv(sd_bus_error *e, int error, const char *format, va_list ap) _printf_(3,0);
|
||||
|
Loading…
Reference in New Issue
Block a user