aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/xl.c
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/xl.c
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/xl.c')
-rw-r--r--tools/libxl/xl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxl/xl.c b/tools/libxl/xl.c
index 4600f8e5ed..7288f5f980 100644
--- a/tools/libxl/xl.c
+++ b/tools/libxl/xl.c
@@ -116,7 +116,7 @@ int main(int argc, char **argv)
logger = xtl_createlogger_stdiostream(stderr, minmsglevel, 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);
}