1
0
Fork 0

[F] Small fix

This commit is contained in:
seleznevae 2018-11-17 13:44:06 +03:00
parent 36377e4094
commit 27e7b69a6d
1 changed files with 1 additions and 1 deletions

View File

@ -4249,7 +4249,7 @@ int wsnprint_n_string(wchar_t *buf, size_t length, size_t n, const char *str)
--k;
}
buf[n] = L'\0';
return n;
return (int)n;
}
}
}