aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/gentest.py
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-10-18 13:36:43 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-10-18 13:36:43 +0100
commit33ca1047cba8e385f9b9f433627ed6c116bd4157 (patch)
treea04a60a2ce3639fe711640528f5fadc14a5ebbe3 /tools/libxl/gentest.py
parent6dc92e085b34e9502e42a53fd6969c9af483a307 (diff)
downloadxen-33ca1047cba8e385f9b9f433627ed6c116bd4157.tar.gz
xen-33ca1047cba8e385f9b9f433627ed6c116bd4157.tar.bz2
xen-33ca1047cba8e385f9b9f433627ed6c116bd4157.zip
libxl: add a flags argument to libxl_ctx_alloc.
Currently unused but gives us scope for expansion in an ABI compatible manner in the future. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson.citrix.com> Committed-by: Ian Jackson <ian.jackson.citrix.com>
Diffstat (limited to 'tools/libxl/gentest.py')
-rw-r--r--tools/libxl/gentest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxl/gentest.py b/tools/libxl/gentest.py
index 24898b7a6e..05e77cce5e 100644
--- a/tools/libxl/gentest.py
+++ b/tools/libxl/gentest.py
@@ -239,7 +239,7 @@ int main(int argc, char **argv)
logger = xtl_createlogger_stdiostream(stderr, XTL_DETAIL, 0);
if (!logger) exit(1);
- if (libxl_ctx_alloc(&ctx, LIBXL_VERSION, (xentoollog_logger*)logger)) {
+ if (libxl_ctx_alloc(&ctx, LIBXL_VERSION, 0, (xentoollog_logger*)logger)) {
fprintf(stderr, "cannot init xl context\\n");
exit(1);
}