Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
* [lttng-dev] [PATCH lttng-tools] Fix: Handle the unary bitwise negation operator (~) in the XML printer
@ 2012-10-23 19:36 Christian Babeux
  2012-10-23 19:57 ` Mathieu Desnoyers
  2012-10-25 19:56 ` David Goulet
  0 siblings, 2 replies; 3+ messages in thread
From: Christian Babeux @ 2012-10-23 19:36 UTC (permalink / raw)



Signed-off-by: Christian Babeux <christian.babeux at efficios.com>
---
 src/lib/lttng-ctl/filter/filter-visitor-xml.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/lib/lttng-ctl/filter/filter-visitor-xml.c b/src/lib/lttng-ctl/filter/filter-visitor-xml.c
index 90a336d..1d14f2e 100644
--- a/src/lib/lttng-ctl/filter/filter-visitor-xml.c
+++ b/src/lib/lttng-ctl/filter/filter-visitor-xml.c
@@ -235,6 +235,9 @@ int recursive_visit_print(struct filter_node *node, FILE *stream, int indent)
 		case AST_UNARY_NOT:
 			fprintf(stream, "\"!\"");
 			break;
+		case AST_UNARY_BIN_NOT:
+			fprintf(stream, "\"~\"");
+			break;
 		}
 		fprintf(stream, ">\n");
 		ret = recursive_visit_print(node->u.unary_op.child,
-- 
1.7.12.2




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-10-25 19:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-23 19:36 [lttng-dev] [PATCH lttng-tools] Fix: Handle the unary bitwise negation operator (~) in the XML printer Christian Babeux
2012-10-23 19:57 ` Mathieu Desnoyers
2012-10-25 19:56 ` David Goulet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox