Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
[pandora-kernel.git] / arch / microblaze / lib / memset.c
index 834565d..ddf6793 100644 (file)
@@ -64,7 +64,7 @@ void *memset(void *v_src, int c, __kernel_size_t n)
 
        if (likely(n >= 4)) {
                /* Align the destination to a word boundary */
-               /* This is done in an endian independant manner */
+               /* This is done in an endian independent manner */
                switch ((unsigned) src & 3) {
                case 1:
                        *src++ = c;