[PATCH] remove likely profiling int cast

From: Daniel Walker
Date: Sun Dec 10 2006 - 12:10:19 EST


Fix some wrong casting from unsigned int to int. Reported by Andreas Mohr.

Signed-Off-By: Daniel Walker <dwalker@xxxxxxxxxx>

---
lib/likely_prof.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

Index: linux-2.6.18/lib/likely_prof.c
===================================================================
--- linux-2.6.18.orig/lib/likely_prof.c
+++ linux-2.6.18/lib/likely_prof.c
@@ -86,8 +86,8 @@ static void *lp_seq_next(struct seq_file
static int lp_seq_show(struct seq_file *out, void *p)
{
struct likeliness *entry = p;
- int true = entry->count[1];
- int false = entry->count[0];
+ unsigned int true = entry->count[1];
+ unsigned int false = entry->count[0];

if (!entry->type) {
if (true > false)
--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/