changeset 331:5c3f2aa95343

ui: s/vdebugf/debugva/g
author David Demelier <markand@malikania.fr>
date Mon, 11 Oct 2021 13:02:10 +0200
parents e0657709fbe3
children 8eee6f92e9ce
files src/libmlk-ui/ui/debug.c src/libmlk-ui/ui/debug.h
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/libmlk-ui/ui/debug.c	Wed Oct 06 13:54:16 2021 +0200
+++ b/src/libmlk-ui/ui/debug.c	Mon Oct 11 13:02:10 2021 +0200
@@ -42,12 +42,12 @@
 	va_list ap;
 
 	va_start(ap, fmt);
-	vdebugf(report, fmt, ap);
+	debugva(report, fmt, ap);
 	va_end(ap);
 }
 
 void
-vdebugf(struct debug_report *report, const char *fmt, va_list ap)
+debugva(struct debug_report *report, const char *fmt, va_list ap)
 {
 	assert(report);
 	assert(fmt);
--- a/src/libmlk-ui/ui/debug.h	Wed Oct 06 13:54:16 2021 +0200
+++ b/src/libmlk-ui/ui/debug.h	Mon Oct 11 13:02:10 2021 +0200
@@ -46,7 +46,7 @@
 
 
 void
-vdebugf(struct debug_report *, const char *, va_list);
+debugva(struct debug_report *, const char *, va_list);
 
 CORE_END_DECLS