summaryrefslogtreecommitdiff
path: root/_obnammodule.c
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-06-16 14:42:25 +0100
committerLars Wirzenius <liw@liw.fi>2013-06-16 14:42:25 +0100
commit0bd1244c1e75254407b0014add1c6cb29ef1b79c (patch)
tree8d15eaef52a6f3dbeef67eb29376d91a29190378 /_obnammodule.c
parentf5cb4c8018f3d4712d031dc9696f15afa747a99c (diff)
downloadobnam-0bd1244c1e75254407b0014add1c6cb29ef1b79c.tar.gz
Remove whitespace from ends of lines
Diffstat (limited to '_obnammodule.c')
-rw-r--r--_obnammodule.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/_obnammodule.c b/_obnammodule.c
index f160d5af..f3e208bc 100644
--- a/_obnammodule.c
+++ b/_obnammodule.c
@@ -2,7 +2,7 @@
* _obnammodule.c -- Python extensions for Obna
*
* Copyright (C) 2008, 2009 Lars Wirzenius <liw@liw.fi>
- *
+ *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
@@ -21,7 +21,7 @@
/*
* This is a Python extension module written for Obnam, the backup
- * software.
+ * software.
*
* This module provides a way to call the posix_fadvise function from
* Python. Obnam uses this to use set the POSIX_FADV_SEQUENTIAL and
@@ -80,8 +80,8 @@ utimensat_wrapper(PyObject *self, PyObject *args)
long mtime_sec, mtime_nsec;
struct timespec tv[2];
- if (!PyArg_ParseTuple(args, "sllll",
- &filename,
+ if (!PyArg_ParseTuple(args, "sllll",
+ &filename,
&atime_sec,
&atime_nsec,
&mtime_sec,
@@ -113,7 +113,7 @@ lstat_wrapper(PyObject *self, PyObject *args)
if (ret == -1)
ret = errno;
- return Py_BuildValue("iKKKKKKKLLLLKLKLK",
+ return Py_BuildValue("iKKKKKKKLLLLKLKLK",
ret,
(unsigned long long) st.st_dev,
(unsigned long long) st.st_ino,
@@ -157,7 +157,7 @@ llistxattr_wrapper(PyObject *self, PyObject *args)
o = Py_BuildValue("i", errno);
free(buf);
} while (o == NULL);
-
+
return o;
}
@@ -186,7 +186,7 @@ lgetxattr_wrapper(PyObject *self, PyObject *args)
o = Py_BuildValue("i", errno);
free(buf);
} while (o == NULL);
-
+
return o;
}
@@ -211,7 +211,7 @@ lsetxattr_wrapper(PyObject *self, PyObject *args)
static PyMethodDef methods[] = {
- {"fadvise_dontneed", fadvise_dontneed, METH_VARARGS,
+ {"fadvise_dontneed", fadvise_dontneed, METH_VARARGS,
"Call posix_fadvise(2) with POSIX_FADV_DONTNEED argument."},
{"utimensat", utimensat_wrapper, METH_VARARGS,
"utimensat(2) wrapper."},