Adapt to new stream interfaces some more.

This commit is contained in:
mcmullen%netscape.com 1999-03-06 02:12:52 +00:00
Родитель 333741e682
Коммит 5c9516e394
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -443,7 +443,7 @@ public:
NS_IMETHOD Close(void) {return NS_OK;}
NS_IMETHOD Write(const char *str, PRUint32 len, PRUint32 *wcnt)
{
*wcnt = fwrite(&str[offset], 1, len, stdout);
*wcnt = fwrite(str, 1, len, stdout);
fflush(stdout);
return NS_OK;
}