aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxen
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2007-03-29 15:51:04 +0100
committerEwan Mellor <ewan@xensource.com>2007-03-29 15:51:04 +0100
commitc7dfb7d1705933ce8fc7902a77303e4c48b57a58 (patch)
tree677c8e28832229f068dfc1b026c754f1c1a9a035 /tools/libxen
parent5a1f59a822263a09502b8dce81b343d1c721b213 (diff)
downloadxen-c7dfb7d1705933ce8fc7902a77303e4c48b57a58.tar.gz
xen-c7dfb7d1705933ce8fc7902a77303e4c48b57a58.tar.bz2
xen-c7dfb7d1705933ce8fc7902a77303e4c48b57a58.zip
Minor fix.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Diffstat (limited to 'tools/libxen')
-rw-r--r--tools/libxen/test/test_event_handling.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/libxen/test/test_event_handling.c b/tools/libxen/test/test_event_handling.c
index 52638949ae..16ba293da6 100644
--- a/tools/libxen/test/test_event_handling.c
+++ b/tools/libxen/test/test_event_handling.c
@@ -186,15 +186,15 @@ int main(int argc, char **argv)
printf("Event received: ID = %"PRId64", %s.\n", ev->id, time);
switch (ev->operation)
{
- case XEN_EVENT_OPERATIONS_ADD:
+ case XEN_EVENT_OPERATION_ADD:
printf("%s created with UUID %s.\n", ev->class, ev->obj_uuid);
break;
- case XEN_EVENT_OPERATIONS_DEL:
+ case XEN_EVENT_OPERATION_DEL:
printf("%s with UUID %s deleted.\n", ev->class, ev->obj_uuid);
break;
- case XEN_EVENT_OPERATIONS_MOD:
+ case XEN_EVENT_OPERATION_MOD:
printf("%s with UUID %s modified.\n", ev->class, ev->obj_uuid);
break;
default: