lkml.org 
[lkml]   [2006]   [Dec]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] remove likely profiling int cast
Fix some wrong casting from unsigned int to int. Reported by Andreas Mohr.

Signed-Off-By: Daniel Walker <dwalker@mvista.com>

---
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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2006-12-10 18:13    [W:0.066 / U:0.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site