]> git.dujemihanovic.xyz Git - u-boot.git/commit
cli: Use unsigned int instead of unsigned long
authorSimon Glass <sjg@chromium.org>
Mon, 2 Oct 2023 01:13:10 +0000 (19:13 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 11 Oct 2023 19:43:54 +0000 (15:43 -0400)
commitfedd372976f499afb71f854f401cf3a4432ab8ec
treeb3ca8425fd426bffb4c3a05b907595a932f6a854
parentdcc18ce0dbaf93d82ef7f0c6fe625c42313eca32
cli: Use unsigned int instead of unsigned long

The index values are not very large so it makes no sense to use a long
integer. Change these to uint instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
common/cli_readline.c