summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorOndrej Bilka <neleai@seznam.cz>2013-06-06 19:36:03 +0200
committerOndrej Bilka <neleai@seznam.cz>2013-06-06 20:36:07 +0200
commit350635a59a000fa4561d0d8bbe6814b4b9df530c (patch)
treeab4ec502e1944f8290eba1102ac210a3806b92a3 /debug
parent25506f09dda0d3d579d98971b3b12dd3e9e2fe8f (diff)
Fix leading whitespaces.
Diffstat (limited to 'debug')
-rw-r--r--debug/fgetws_u_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/fgetws_u_chk.c b/debug/fgetws_u_chk.c
index 61d9de7510..913af67c7f 100644
--- a/debug/fgetws_u_chk.c
+++ b/debug/fgetws_u_chk.c
@@ -46,7 +46,7 @@ __fgetws_unlocked_chk (wchar_t *buf, size_t size, int n, _IO_FILE *fp)
/* If we read in some bytes and errno is EAGAIN, that error will
be reported for next read. */
if (count == 0 || ((fp->_IO_file_flags & _IO_ERR_SEEN)
- && errno != EAGAIN))
+ && errno != EAGAIN))
result = NULL;
else if (count >= size)
__chk_fail ();