Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2011-06-06 09:02:13 +0400
committerChristopher Faylor <me@cgf.cx>2011-06-06 09:02:13 +0400
commitb86f999af19e2ef688661a66c07420089425646a (patch)
treeb4d01ee69bf9c61cd94bc98520820608595a3a53 /winsup/cygwin/errno.cc
parentdaf7238603ffb7ed994ee492ed63620f6f919835 (diff)
whitespace elimination
Diffstat (limited to 'winsup/cygwin/errno.cc')
-rw-r--r--winsup/cygwin/errno.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc
index f3b925ef2..b775db50d 100644
--- a/winsup/cygwin/errno.cc
+++ b/winsup/cygwin/errno.cc
@@ -382,10 +382,10 @@ _strerror_r (struct _reent *, int errnum, int internal, int *errptr)
if (!errstr)
{
errstr = internal ? _my_tls.locals.strerror_r_buf
- : _my_tls.locals.strerror_buf;
+ : _my_tls.locals.strerror_buf;
__small_sprintf (errstr, "Unknown error %d", errnum);
if (errptr)
- *errptr = EINVAL;
+ *errptr = EINVAL;
}
return errstr;
}
@@ -493,9 +493,9 @@ error_at_line (int status, int errnum, const char *filename, unsigned int lineno
/* strcmp(3) will SEGV if filename or last_filename are NULL */
if (lineno == last_lineno
- && ((!filename && !last_filename)
- || (filename && last_filename && strcmp (filename, last_filename) == 0)))
- return;
+ && ((!filename && !last_filename)
+ || (filename && last_filename && strcmp (filename, last_filename) == 0)))
+ return;
last_filename = filename;
last_lineno = lineno;