Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=de4fc64f0f2a4efbaad3e7c1e1e05a28f69b45e5
Commit:     de4fc64f0f2a4efbaad3e7c1e1e05a28f69b45e5
Parent:     094972840f2e7c1c6fc9e1a97d817cc17085378e
Author:     Harvey Harrison <[EMAIL PROTECTED]>
AuthorDate: Sat Feb 23 15:23:33 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Feb 23 17:12:14 2008 -0800

    markers: fix sparse warnings in markers.c
    
    char can be unsigned
    kernel/marker.c:64:20: error: dubious one-bit signed bitfield
    kernel/marker.c:65:14: error: dubious one-bit signed bitfield
    
    Signed-off-by: Harvey Harrison <[EMAIL PROTECTED]>
    Acked-by: Mathieu Desnoyers <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 kernel/marker.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/marker.c b/kernel/marker.c
index c4c2cd8..50effc0 100644
--- a/kernel/marker.c
+++ b/kernel/marker.c
@@ -61,8 +61,8 @@ struct marker_entry {
        int refcount;   /* Number of times armed. 0 if disarmed. */
        struct rcu_head rcu;
        void *oldptr;
-       char rcu_pending:1;
-       char ptype:1;
+       unsigned char rcu_pending:1;
+       unsigned char ptype:1;
        char name[0];   /* Contains name'\0'format'\0' */
 };
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to