[svn:parrot] r39637 - branches/cindent/src/io
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Thu Jun 18 01:44:21 UTC 2009
Author: jkeenan
Date: Thu Jun 18 01:44:20 2009
New Revision: 39637
URL: https://trac.parrot.org/parrot/changeset/39637
Log:
Indent label to match following block (temporary change pending further analysis of c_indent coding standard).
Modified:
branches/cindent/src/io/unix.c
Modified: branches/cindent/src/io/unix.c
==============================================================================
--- branches/cindent/src/io/unix.c Thu Jun 18 01:32:49 2009 (r39636)
+++ branches/cindent/src/io/unix.c Thu Jun 18 01:44:20 2009 (r39637)
@@ -551,7 +551,7 @@
size_t to_write = s->bufused;
size_t written = 0;
- write_through:
+ write_through:
while (to_write > 0) {
const int err = write(file_descriptor, ptr, to_write);
if (err >= 0) {
More information about the parrot-commits
mailing list