unicode: make utf8 test count static
authorBen Dooks <ben.dooks@codethink.co.uk>
Fri, 8 Mar 2024 18:32:15 +0000 (18:32 +0000)
committerGabriel Krisman Bertazi <krisman@suse.de>
Thu, 20 Jun 2024 23:28:05 +0000 (19:28 -0400)
commit7bd3d76a1f9fb38c8234cfadb7131e0b26deb919
tree7ee37392b9cb3f73683f1df8a1425bbdaf2eed03
parent6ba59ff4227927d3a8530fc2973b80e94b54d58f
unicode: make utf8 test count static

The variables failed_tests and total_tests are not used outside of the
utf8-selftest.c file so make them static to avoid the following warnings:

fs/unicode/utf8-selftest.c:17:14: warning: symbol 'failed_tests' was not declared. Should it be static?
fs/unicode/utf8-selftest.c:18:14: warning: symbol 'total_tests' was not declared. Should it be static?

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Link: https://lore.kernel.org/r/20240308183215.1924331-1-ben.dooks@codethink.co.uk
Signed-off-by: Gabriel Krisman Bertazi <krisman@suse.de>
fs/unicode/utf8-selftest.c