Fix indentation.

This commit is contained in:
Jeremy Hylton 2002-07-18 20:58:57 +00:00
parent af4c12f4c3
commit 7fa4bfa173
1 changed files with 5 additions and 5 deletions

View File

@ -378,12 +378,12 @@ write_file(Picklerobject *self, char *s, int n)
}
Py_BEGIN_ALLOW_THREADS
nbyteswritten = fwrite(s, sizeof(char), n, self->fp);
nbyteswritten = fwrite(s, sizeof(char), n, self->fp);
Py_END_ALLOW_THREADS
if (nbyteswritten != (size_t)n) {
PyErr_SetFromErrno(PyExc_IOError);
return -1;
}
if (nbyteswritten != (size_t)n) {
PyErr_SetFromErrno(PyExc_IOError);
return -1;
}
return n;
}