diff libui/ui/debug.c @ 168:aab824406d3d

misc: all printf-like function are name foof and vfoof
author David Demelier <markand@malikania.fr>
date Tue, 20 Oct 2020 15:09:39 +0200
parents 13b7a1a4a72c
children 6992085d47fd
line wrap: on
line diff
--- a/libui/ui/debug.c	Tue Oct 20 14:58:51 2020 +0200
+++ b/libui/ui/debug.c	Tue Oct 20 15:09:39 2020 +0200
@@ -31,7 +31,7 @@
 };
 
 void
-debug(struct debug_report *report, const char *fmt, ...)
+debugf(struct debug_report *report, const char *fmt, ...)
 {
 	assert(report);
 	assert(fmt);
@@ -42,12 +42,12 @@
 	va_list ap;
 
 	va_start(ap, fmt);
-	vdebug(report, fmt, ap);
+	vdebugf(report, fmt, ap);
 	va_end(ap);
 }
 
 void
-vdebug(struct debug_report *report, const char *fmt, va_list ap)
+vdebugf(struct debug_report *report, const char *fmt, va_list ap)
 {
 	assert(report);
 	assert(fmt);