diff options
author | Steve French <smfrench@gmail.com> | 2017-03-03 00:42:48 +0300 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2017-03-03 08:11:54 +0300 |
commit | 284316dd42a2027afe37df34c5199eb4eabed8fd (patch) | |
tree | 5589fe063a8e790857a2f63b04979dad59e77950 /fs/cifs/cifs_unicode.h | |
parent | 9d49640a21bffd730a6ebf2a0032e022f7caf84a (diff) | |
download | linux-284316dd42a2027afe37df34c5199eb4eabed8fd.tar.xz |
CIFS: Fix sparse warnings
Fix two minor sparse compile check warnings
Signed-off-by: Steve French <steve.french@primarydata.com>
Acked-by: Pavel Shilovsky <pshilov@microsoft.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Diffstat (limited to 'fs/cifs/cifs_unicode.h')
-rw-r--r-- | fs/cifs/cifs_unicode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/cifs_unicode.h b/fs/cifs/cifs_unicode.h index 479bc0a941f3..3d7298cc0aeb 100644 --- a/fs/cifs/cifs_unicode.h +++ b/fs/cifs/cifs_unicode.h @@ -130,10 +130,10 @@ wchar_t cifs_toupper(wchar_t in); * Returns: * Address of the first string */ -static inline wchar_t * -UniStrcat(wchar_t *ucs1, const wchar_t *ucs2) +static inline __le16 * +UniStrcat(__le16 *ucs1, const __le16 *ucs2) { - wchar_t *anchor = ucs1; /* save a pointer to start of ucs1 */ + __le16 *anchor = ucs1; /* save a pointer to start of ucs1 */ while (*ucs1++) ; /* To end of first string */ ucs1--; /* Return to the null */ |