* David Goulet ([email protected]) wrote:
> Error introduce in commit number 9dec086e052cf7f583a3afaa3aab48a6de8d38ac.
> 
> Signed-off-by: David Goulet <[email protected]>

Acked-by: Mathieu Desnoyers <[email protected]>

> ---
>  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
> 
> 
> _______________________________________________
> ltt-dev mailing list
> [email protected]
> http://lists.casi.polymtl.ca/cgi-bin/mailman/listinfo/ltt-dev
> 

-- 
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com

_______________________________________________
ltt-dev mailing list
[email protected]
http://lists.casi.polymtl.ca/cgi-bin/mailman/listinfo/ltt-dev

Reply via email to