]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[CIFS] Reduce sparse endian warnings
authorSteve French <sfrench@us.ibm.com>
Fri, 11 Nov 2005 03:28:44 +0000 (19:28 -0800)
committerSteve French <sfrench@us.ibm.com>
Fri, 11 Nov 2005 03:28:44 +0000 (19:28 -0800)
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/cifs_unicode.c

index 99a096d3f84d679d668807d5081baf4beeabc95f..4e12053f0806bed870906a3280d428ad8a9d9186 100644 (file)
@@ -74,10 +74,11 @@ cifs_strtoUCS(wchar_t * to, const char *from, int len,
                        cERROR(1,
                               ("cifs_strtoUCS: char2uni returned %d",
                                charlen));
-                       to[i] = cpu_to_le16(0x003f);    /* a question mark */
+                       /* A question mark */
+                       to[i] = (wchar_t)cpu_to_le16(0x003f);
                        charlen = 1;
                } else 
-                       to[i] = cpu_to_le16(to[i]);
+                       to[i] = (wchar_t)cpu_to_le16(to[i]);
 
        }