X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdio%2Fvsnprintf.c;h=4dbd7c27cfb03679a366558346ddb8d942b6bf8c;hb=8e478139e626b9b09fbef507ba0faf44c022fc6a;hp=21e76b1439e4e65ab29c5f194e1a75927792abd1;hpb=bcbac585ab7f87f3415b8d7f4e54e62de6cc8b5f;p=fw%2Fpdclib diff --git a/functions/stdio/vsnprintf.c b/functions/stdio/vsnprintf.c index 21e76b1..4dbd7c2 100644 --- a/functions/stdio/vsnprintf.c +++ b/functions/stdio/vsnprintf.c @@ -14,13 +14,13 @@ int vsnprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict format, _PDCLIB_va_list arg ) { /* TODO: This function should interpret format as multibyte characters. */ - /* Members: base, flags, n, i, this, s, width, prec, stream, arg */ + /* Members: base, flags, n, i, current, s, width, prec, stream, arg */ struct _PDCLIB_status_t status; status.base = 0; status.flags = 0; status.n = n; status.i = 0; - status.this = 0; + status.current = 0; status.s = s; status.width = 0; status.prec = 0;