From d5f30b72bdfeaa6d1697d288318c11eb642d6c5f Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Fri, 7 Nov 2025 16:21:05 +0100 Subject: [PATCH] error: add missing log_priority/interface functions to header file Signed-off-by: Jaroslav Kysela --- include/error.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/error.h b/include/error.h index 13a9d2bc..faeff8e0 100644 --- a/include/error.h +++ b/include/error.h @@ -91,6 +91,8 @@ void snd_lib_log(int prio, int interface, const char *file, int line, const char void snd_lib_check(int interface, const char *file, int line, const char *function, int errcode, const char *fmt, ...); snd_lib_log_handler_t snd_lib_log_set_handler(snd_lib_log_handler_t handler); snd_lib_log_handler_t snd_lib_log_set_local(snd_lib_log_handler_t handler); +const char *snd_lib_log_priority(int prio); +const char *snd_lib_log_interface(int interface); #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 95) #define snd_error(interface, ...) snd_lib_log(SND_LOG_ERROR, SND_ILOG_##interface, __FILE__, __LINE__, __func__, 0, __VA_ARGS__) /**< Shows an error log message. */ -- 2.47.3