summaryrefslogtreecommitdiff
path: root/libio/iopadn.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/iopadn.c')
-rw-r--r--libio/iopadn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/iopadn.c b/libio/iopadn.c
index 94166a3eb1..be2c2a6767 100644
--- a/libio/iopadn.c
+++ b/libio/iopadn.c
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 1993 Free Software Foundation
This file is part of the GNU IO Library. This library is free
@@ -38,7 +38,7 @@ DEFUN(_IO_padn, (fp, pad, count),
const char *padptr;
register int i;
_IO_size_t written = 0, w;
-
+
if (pad == ' ')
padptr = blanks;
else if (pad == '0')
@@ -55,7 +55,7 @@ DEFUN(_IO_padn, (fp, pad, count),
if (w != PADSIZE)
return written;
}
-
+
if (i > 0)
{
w = _IO_sputn(fp, padptr, i);