mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-10 14:09:51 -05:00
Constify the format string of logging functions
This commit is contained in:
@@ -32,10 +32,10 @@
|
||||
|
||||
|
||||
void
|
||||
vlogger(int severity, int domain, char *fmt, va_list args);
|
||||
vlogger(int severity, int domain, const char *fmt, va_list args);
|
||||
|
||||
void
|
||||
DPRINTF(int severity, int domain, char *fmt, ...) __attribute__((format(printf, 3, 4)));
|
||||
DPRINTF(int severity, int domain, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
|
||||
|
||||
void
|
||||
logger_libevent(int severity, const char *msg);
|
||||
|
||||
Reference in New Issue
Block a user