From 8448ed74a88312d5cf1ca7862aff8c2087c0ffbc Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 6 Oct 2024 16:48:16 -0400 Subject: Avoid using uninitialized va_list variables --- include/ingen/Log.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/ingen') diff --git a/include/ingen/Log.hpp b/include/ingen/Log.hpp index 572e7b81..acbb4b6d 100644 --- a/include/ingen/Log.hpp +++ b/include/ingen/Log.hpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2016 David Robillard + Copyright 2007-2024 David Robillard Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -88,6 +88,7 @@ public: } int vtprintf(LV2_URID type, const char* fmt, va_list args); + int tprintf(LV2_URID type, const char* fmt, ...); void set_flush(bool f) { _flush = f; } void set_trace(bool f) { _trace = f; } -- cgit v1.2.1