* Various formatting and whitespace changes.

This commit is contained in:
Thomas Fitzsimmons
2002-04-30 18:23:40 +00:00
parent 1bf83a86f6
commit bfc27bae1a
16 changed files with 44 additions and 47 deletions

View File

@ -67,17 +67,17 @@ __sfvwrite (fp, uio)
if (fp->_flags & __SCLE) /* text mode */
{
do
{
GETIOV (;);
while (len > 0)
{
if (putc(*p, fp) == EOF)
return EOF;
p++;
len--;
uio->uio_resid--;
}
}
{
GETIOV (;);
while (len > 0)
{
if (putc(*p, fp) == EOF)
return EOF;
p++;
len--;
uio->uio_resid--;
}
}
while (uio->uio_resid > 0);
return 0;
}