unicode: mark the version field in struct unicode_map unsigned

unicode version tripplets are always unsigned.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Gabriel Krisman Bertazi <krisman@collabora.com>
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
This commit is contained in:
Christoph Hellwig 2021-09-15 08:59:59 +02:00 committed by Gabriel Krisman Bertazi
parent a440943e68
commit f3a9c82396

View File

@ -6,7 +6,7 @@
#include <linux/dcache.h>
struct unicode_map {
int version;
unsigned int version;
};
int utf8_validate(const struct unicode_map *um, const struct qstr *str);