making one more wine msvcrt printf test pass

now it is 62 fails instead of 63 fails

svn path=/trunk/; revision=22082
This commit is contained in:
Magnus Olsen 2006-05-28 01:32:32 +00:00
parent 6999a6bc5c
commit b254c4649e
2 changed files with 2 additions and 2 deletions

View file

@ -506,7 +506,7 @@ int _vsnprintf(char *buf, size_t cnt, const char *fmt, va_list args)
{
/* don't write out a null byte if the buf size is zero */
//*end = '\0';
if (str-buf >=cnt )
if (str-buf >cnt )
{
*end = '\0';
}

View file

@ -504,7 +504,7 @@ int _vsnwprintf(wchar_t *buf, size_t cnt, const wchar_t *fmt, va_list args)
{
/* don't write out a null byte if the buf size is zero */
//*end = '\0';
if (str-buf >=cnt )
if (str-buf >cnt )
{
*end = L'\0';
}