From a50f1a8369c909a835a21d54d3facfb4a628205f Mon Sep 17 00:00:00 2001 From: Marco Paland Date: Tue, 5 Jun 2018 11:25:47 +0200 Subject: test(test_suite): modified fctprintf() test case Renamed 'user' to 'arg' --- printf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'printf.h') diff --git a/printf.h b/printf.h index 8b8e76e..33592c6 100644 --- a/printf.h +++ b/printf.h @@ -88,7 +88,7 @@ int vsnprintf(char* buffer, size_t count, const char* format, va_list va); * \param format A string that specifies the format of the output * \return The number of characters that are sent to the output function, not counting the terminating null character */ -int fctprintf(void (*out)(char character, void* user), void* user, const char* format, ...); +int fctprintf(void (*out)(char character, void* arg), void* arg, const char* format, ...); #ifdef __cplusplus -- cgit v1.2.3