[PATCH] slab.c warnings

From: Stephen Hemminger (shemminger@osdl.org)
Date: Thu Jan 09 2003 - 14:17:11 EST


This gets rid of the compiler warnings in mm/slab.c:
Example:

mm/slab.c: In function `slab_destroy':
mm/slab.c:806: warning: passing arg 1 of `__slab_error' discards
qualifiers from pointer target type
mm/slab.c:810: warning: passing arg 1 of `__slab_error' discards
qualifiers from pointer target type

diff -Nru a/mm/slab.c b/mm/slab.c
--- a/mm/slab.c Thu Jan 9 11:10:13 2003
+++ b/mm/slab.c Thu Jan 9 11:10:13 2003
@@ -502,7 +502,8 @@
 
 #define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
 
-static void __slab_error(char *function, kmem_cache_t *cachep, char
*msg)
+static void __slab_error(const char *function, kmem_cache_t *cachep,
+ const char *msg)
 {
         printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
                 function, cachep->name, msg);

-
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/



This archive was generated by hypermail 2b29 : Wed Jan 15 2003 - 22:00:29 EST