summaryrefslogtreecommitdiffstats
path: root/gio
diff options
context:
space:
mode:
authorPaul Pogonyshev <pogonyshev@gmx.net>2009-05-30 17:24:15 +0300
committerPaul Pogonyshev <pogonyshev@gmx.net>2009-05-30 17:24:15 +0300
commit2cb569c0ced49f9ed5ca83292d5f15c837066688 (patch)
treec9cd779267afd363ee1801dcb91889fdf2f8d417 /gio
parente43fa429f6b4019a432acb481bbc07c8201cc46d (diff)
downloadpygobject-2cb569c0ced49f9ed5ca83292d5f15c837066688.tar.gz
pygobject-2cb569c0ced49f9ed5ca83292d5f15c837066688.tar.xz
pygobject-2cb569c0ced49f9ed5ca83292d5f15c837066688.zip
Fix gio.OutputStream.splice_async
Bug #584290.
Diffstat (limited to 'gio')
-rw-r--r--gio/goutputstream.override8
1 files changed, 4 insertions, 4 deletions
diff --git a/gio/goutputstream.override b/gio/goutputstream.override
index 6f3cd95..e28a3d0 100644
--- a/gio/goutputstream.override
+++ b/gio/goutputstream.override
@@ -259,8 +259,8 @@ _wrap_g_output_stream_flush_async(PyGObject *self,
override g_output_stream_splice_async kwargs
static PyObject *
_wrap_g_output_stream_splice_async(PyGObject *self,
- PyObject *args,
- PyObject *kwargs)
+ PyObject *args,
+ PyObject *kwargs)
{
static char *kwlist[] = { "source", "callback", "flags", "io_priority",
"cancellable", "user_data", NULL };
@@ -276,12 +276,12 @@ _wrap_g_output_stream_splice_async(PyGObject *self,
notify = pygio_notify_new();
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
- "O!O|iOO:OutputStream.splice_async",
+ "O!O|OiOO:OutputStream.splice_async",
kwlist,
&PyGInputStream_Type,
&source,
&notify->callback,
- &flags,
+ &py_flags,
&io_priority,
&pycancellable,
&notify->data))