Skip to content

Commit e0e2d27

Browse files
committed
fix * position
1 parent a3b67fc commit e0e2d27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_io/fileio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ static PyObject *
12941294
fileio_get_blksize(PyObject *op, void *closure)
12951295
{
12961296
#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1297-
fileio* self = PyFileIO_CAST(op);
1297+
fileio *self = PyFileIO_CAST(op);
12981298
if (self->stat_atopen != NULL && self->stat_atopen->st_blksize > 1) {
12991299
return PyLong_FromLong(self->stat_atopen->st_blksize);
13001300
}

0 commit comments

Comments
 (0)