Skip to content

Commit 450b2f3

Browse files
authored
Make indent again
#344 Signed-off-by: Christian Heimes <cheimes@redhat.com>
1 parent d5996ec commit 450b2f3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Modules/constants.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@ LDAPraise_for_message(LDAP *l, LDAPMessage *m)
6464
PyObject *pyerrno;
6565
PyObject *pyresult;
6666
PyObject *pyctrls = NULL;
67-
char *matched = NULL,
68-
*error = NULL,
69-
**refs = NULL;
67+
char *matched = NULL, *error = NULL, **refs = NULL;
7068
LDAPControl **serverctrls = NULL;
7169

7270
/* at first save errno for later use before it gets overwritten by another call */

Modules/functions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ l_ldap_initialize_fd(PyObject *unused, PyObject *args)
8484
else {
8585
ldap_free_urldesc(lud);
8686
PyErr_SetString(PyExc_ValueError, "unsupported URL scheme");
87-
return NULL;
87+
return NULL;
8888
}
8989
ldap_free_urldesc(lud);
9090

0 commit comments

Comments
 (0)