1
0
Fork 0

fix(printf): fix argument name in output function wrapper

development
Marco Paland 7 years ago
parent a50f1a8369
commit 23d0687aab

@ -113,7 +113,7 @@ static inline void _out_fct(char character, char* buffer, size_t idx, size_t max
{ {
(void)idx; (void)maxlen; (void)idx; (void)maxlen;
// buffer is the output fct pointer // buffer is the output fct pointer
((out_fct_wrap_type*)buffer)->fct(character, ((out_fct_wrap_type*)buffer)->user); ((out_fct_wrap_type*)buffer)->fct(character, ((out_fct_wrap_type*)buffer)->arg);
} }

Loading…
Cancel
Save