Skip to content

Commit 32ca47f

Browse files
committed
reader: fix indentation
1 parent 0677c4a commit 32ca47f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/systemd/_reader.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ static PyStructSequence_Desc Monotonic_desc = {
8080
* Returns NULL on error.
8181
*/
8282
static char* str_converter(PyObject *str, PyObject **bytes) {
83-
int r;
83+
int r;
8484

85-
r = PyUnicode_FSConverter(str, bytes);
86-
if (r == 0)
87-
return NULL;
85+
r = PyUnicode_FSConverter(str, bytes);
86+
if (r == 0)
87+
return NULL;
8888

89-
return PyBytes_AsString(*bytes);
89+
return PyBytes_AsString(*bytes);
9090
}
9191

9292
/**

0 commit comments

Comments
 (0)