From: Christoph Hellwig Date: Wed, 15 Sep 2021 06:59:59 +0000 (+0200) Subject: unicode: mark the version field in struct unicode_map unsigned X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f3a9c82396006a5664f6e398d6928799d29de76e;p=linux.git unicode: mark the version field in struct unicode_map unsigned unicode version tripplets are always unsigned. Signed-off-by: Christoph Hellwig Reviewed-by: Gabriel Krisman Bertazi Signed-off-by: Gabriel Krisman Bertazi --- diff --git a/include/linux/unicode.h b/include/linux/unicode.h index 6a392cd9f076d..0744f81c4b5fc 100644 --- a/include/linux/unicode.h +++ b/include/linux/unicode.h @@ -6,7 +6,7 @@ #include struct unicode_map { - int version; + unsigned int version; }; int utf8_validate(const struct unicode_map *um, const struct qstr *str);