tools: use 'unsigned int' instead of 'uint'
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 9 Feb 2023 18:49:38 +0000 (19:49 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 10 Feb 2023 08:54:41 +0000 (09:54 +0100)
uint is an old compatibility name that GCC still provides but clang
doesn't. Use unsigned int instead.

Fixes: 8ffb6489286f ("tools: line name focussed rework")
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Kent Gibson <warthog618@gmail.com>
tools/tools-common.h

index efbeeb82fcab55e15b2e195297ff1b670bd7846f..5d391706f67373c0622779ea97aa875f35c8ef9b 100644 (file)
@@ -43,7 +43,7 @@ struct resolved_line {
        int chip_num;
 
        /* offset of line on chip */
-       uint offset;
+       unsigned int offset;
 
        /* line value for gpioget/set */
        int value;