From: Bartosz Golaszewski Date: Thu, 9 Feb 2023 18:49:38 +0000 (+0100) Subject: tools: use 'unsigned int' instead of 'uint' X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bfb147a14de5309f2add2c4d26ed2590d1e68ded;p=qemu-gpiodev%2Flibgpiod.git tools: use 'unsigned int' instead of 'uint' 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 Reviewed-by: Kent Gibson --- diff --git a/tools/tools-common.h b/tools/tools-common.h index efbeeb8..5d39170 100644 --- a/tools/tools-common.h +++ b/tools/tools-common.h @@ -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;