[ltt-dev] [UST PATCH] Fix missing parenthese around logic comparison
David Goulet
david.goulet at polymtl.ca
Thu Sep 9 17:11:19 EDT 2010
Error introduce in commit number 9dec086e052cf7f583a3afaa3aab48a6de8d38ac.
Signed-off-by: David Goulet <david.goulet at polymtl.ca>
---
libust/tracepoint.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libust/tracepoint.c b/libust/tracepoint.c
index 8783b53..16b4819 100644
--- a/libust/tracepoint.c
+++ b/libust/tracepoint.c
@@ -154,8 +154,8 @@ tracepoint_entry_remove_probe(struct tracepoint_entry *entry, void *probe,
debug_print_probes(entry);
/* (N -> M), (N > 1, M >= 0) probes */
for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
- if ((!probe ||
- old[nr_probes].func == probe &&
+ if (!probe ||
+ (old[nr_probes].func == probe &&
old[nr_probes].data == data))
nr_del++;
}
--
1.7.2.3
More information about the lttng-dev
mailing list