Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7fa4bfa

Browse files
committed
Fix indentation.
1 parent af4c12f commit 7fa4bfa

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Modules/cPickle.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -378,12 +378,12 @@ write_file(Picklerobject *self, char *s, int n)
378378
}
379379

380380
Py_BEGIN_ALLOW_THREADS
381-
nbyteswritten = fwrite(s, sizeof(char), n, self->fp);
381+
nbyteswritten = fwrite(s, sizeof(char), n, self->fp);
382382
Py_END_ALLOW_THREADS
383-
if (nbyteswritten != (size_t)n) {
384-
PyErr_SetFromErrno(PyExc_IOError);
385-
return -1;
386-
}
383+
if (nbyteswritten != (size_t)n) {
384+
PyErr_SetFromErrno(PyExc_IOError);
385+
return -1;
386+
}
387387

388388
return n;
389389
}

0 commit comments

Comments
 (0)