about summary refs log tree commit diff
path: root/libio/strops.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/strops.c')
-rw-r--r--libio/strops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/strops.c b/libio/strops.c
index f4f45259fb..98c5b263d5 100644
--- a/libio/strops.c
+++ b/libio/strops.c
@@ -51,7 +51,7 @@ DEFUN(_IO_str_init_static, (fp, ptr, size, pstart),
 	 This can lose in pathological cases (ptr near the end
 	 of the address space).  A better solution might be to
 	 adjust the size on underflow/overflow.  FIXME. */
-      for (s; s = 2*size, s > 0 && ptr + s > ptr && s < 0x4000000L; )
+      for ( ; s = 2*size, s > 0 && ptr + s > ptr && s < 0x4000000L; )
 	size = s;
       size = s;
 #else