C coding style: remove tabs

This commit is contained in:
J. David Ibáñez
2014-06-21 10:23:52 +02:00
parent 88a28f7ed8
commit 791b39433c
3 changed files with 82 additions and 81 deletions

View File

@@ -123,7 +123,8 @@ option(PyObject *self, PyObject *args)
{ {
size_t size; size_t size;
if ((error = git_libgit2_opts(GIT_OPT_GET_MWINDOW_SIZE, &size)) < 0) { error = git_libgit2_opts(GIT_OPT_GET_MWINDOW_SIZE, &size);
if (error < 0) {
Error_set(error); Error_set(error);
return NULL; return NULL;
} }
@@ -145,9 +146,9 @@ option(PyObject *self, PyObject *args)
if (!PyLong_Check(py_size)) if (!PyLong_Check(py_size))
goto on_non_integer; goto on_non_integer;
size = PyLong_AsSize_t(py_size); size = PyLong_AsSize_t(py_size);
if ((error = git_libgit2_opts(GIT_OPT_SET_MWINDOW_SIZE, size)) < 0) { error = git_libgit2_opts(GIT_OPT_SET_MWINDOW_SIZE, size);
if (error < 0) {
Error_set(error); Error_set(error);
return NULL; return NULL;
} }