aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-07-08 08:02:45 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-07-08 08:02:45 +0000
commitfb4f1fe81520d75019c7eeafa548474ea69e3055 (patch)
tree26f3ca6e3b7277563fa94dde7a71ca1d51bcc26c
parent847e60294d1886f390600baba5558c2f1a3727fc (diff)
downloadxen-fb4f1fe81520d75019c7eeafa548474ea69e3055.tar.gz
xen-fb4f1fe81520d75019c7eeafa548474ea69e3055.tar.bz2
xen-fb4f1fe81520d75019c7eeafa548474ea69e3055.zip
python wrapper arg fix from aq.
-rw-r--r--tools/python/xen/lowlevel/xc/xc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c
index dbd8c06b5a..cf625b0df0 100644
--- a/tools/python/xen/lowlevel/xc/xc.c
+++ b/tools/python/xen/lowlevel/xc/xc.c
@@ -688,7 +688,7 @@ static PyObject *pyxc_physinfo(PyObject *self,
if ( xc_physinfo(xc->xc_handle, &info) != 0 )
return PyErr_SetFromErrno(xc_error);
- return Py_BuildValue("{s:i,s:i,s:l,s:l,s:l}",
+ return Py_BuildValue("{s:i,s:i,s:i,s:i,s:l,s:l,s:i}",
"threads_per_core", info.threads_per_core,
"cores_per_socket", info.cores_per_socket,
"sockets_per_node", info.sockets_per_node,