[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] tools/python/xc: fix tmem_control parameter parsing
There should be 6 instead of 7 arguments now for tmem_control(). Signed-off-by: Zhigang Wang <zhigang.x.wang@xxxxxxxxxx> --- tools/python/xen/lowlevel/xc/xc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c index c40a4e9..ff714d7 100644 --- a/tools/python/xen/lowlevel/xc/xc.c +++ b/tools/python/xen/lowlevel/xc/xc.c @@ -1620,7 +1620,7 @@ static PyObject *pyxc_tmem_control(XcObject *self, static char *kwd_list[] = { "pool_id", "subop", "cli_id", "arg1", "arg2", "buf", NULL }; - if ( !PyArg_ParseTupleAndKeywords(args, kwds, "iiiiiis", kwd_list, + if ( !PyArg_ParseTupleAndKeywords(args, kwds, "iiiiis", kwd_list, &pool_id, &subop, &cli_id, &arg1, &arg2, &buf) ) return NULL; -- 2.5.5 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |