فهرست منبع

[PATCH] lib/string.c cleanup: restore useful memmove const

A couple of (char *) casts removed in a previous cleanup patch in
lib/string.c:memmove() were actually useful, as they suppressed a couple of
warnings:

	assignment discards qualifiers from pointer target type

Fix by declaring the local variable const in the first place, so casts
aren't needed to strip the const qualifier.

Signed-off-by: Paul Jackson <pj@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Paul Jackson 19 سال پیش
والد
کامیت
82da2c3727
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      lib/string.c

+ 2 - 1
lib/string.c

@@ -488,7 +488,8 @@ EXPORT_SYMBOL(memcpy);
  */
  */
 void *memmove(void *dest, const void *src, size_t count)
 void *memmove(void *dest, const void *src, size_t count)
 {
 {
-	char *tmp, *s;
+	char *tmp;
+	const char *s;
 
 
 	if (dest <= src) {
 	if (dest <= src) {
 		tmp = dest;
 		tmp = dest;