]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - lib/string.c
h63xx: tsc2101 alsa sound support
[linux-2.6-omap-h63xx.git] / lib / string.c
index d7a5ff9b81eaa287a605f59602ea9eb3fdfcef95..037a48acedbb21aae00269c87ef9f1821fb1bb67 100644 (file)
@@ -488,7 +488,8 @@ EXPORT_SYMBOL(memcpy);
  */
 void *memmove(void *dest, const void *src, size_t count)
 {
-       char *tmp, *s;
+       char *tmp;
+       const char *s;
 
        if (dest <= src) {
                tmp = dest;