From: compudj@krystal.dyndns.org (Mathieu Desnoyers)
Subject: [ltt-dev] [UST PATCH] Fix missing parenthese around logic comparison
Date: Thu, 9 Sep 2010 17:33:34 -0400 [thread overview]
Message-ID: <20100909213334.GA8990@Krystal> (raw)
In-Reply-To: <1284066679-27862-1-git-send-email-david.goulet@polymtl.ca>
* David Goulet (david.goulet at polymtl.ca) wrote:
> Error introduce in commit number 9dec086e052cf7f583a3afaa3aab48a6de8d38ac.
>
> Signed-off-by: David Goulet <david.goulet at polymtl.ca>
Acked-by: Mathieu Desnoyers <mathieu.desnoyers at efficios.com>
> ---
> 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
> ltt-dev at lists.casi.polymtl.ca
> 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
prev parent reply other threads:[~2010-09-09 21:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-09 21:11 David Goulet
2010-09-09 21:33 ` Mathieu Desnoyers [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100909213334.GA8990@Krystal \
--to=compudj@krystal.dyndns.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox