Mostly cosmetic changes

This commit is contained in:
Gregory Nutt
2014-09-04 10:28:38 -06:00
parent 166d46a819
commit 47d55c28dc
4 changed files with 7 additions and 5 deletions
+4 -2
View File
@@ -54,8 +54,9 @@
static void rawoutstream_putc(FAR struct lib_outstream_s *this, int ch)
{
FAR struct lib_rawoutstream_s *rthis = (FAR struct lib_rawoutstream_s *)this;
int nwritten;
char buffer = ch;
int nwritten;
int errcode;
DEBUGASSERT(this && rthis->fd >= 0);
@@ -77,9 +78,10 @@ static void rawoutstream_putc(FAR struct lib_outstream_s *this, int ch)
* return values from write().
*/
errcode = get_errno();
DEBUGASSERT(nwritten < 0);
}
while (get_errno() == EINTR);
while (errcode == EINTR);
}
/****************************************************************************