aboutsummaryrefslogtreecommitdiff
path: root/dtc.h
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2021-06-11 18:10:37 +0100
committerDavid Gibson <david@gibson.dropbear.id.au>2021-06-15 12:48:25 +1000
commit5bec74a6d13519381a40b5433ede7849a75a8d79 (patch)
treedcd05551805dbe75ef3c63acebe95dd509e2fc51 /dtc.h
parent24e7f511fd4acaf48d25374f88dbdbdb277e6a26 (diff)
downloaddtc-5bec74a6d13519381a40b5433ede7849a75a8d79.zip
dtc-5bec74a6d13519381a40b5433ede7849a75a8d79.tar.gz
dtc-5bec74a6d13519381a40b5433ede7849a75a8d79.tar.bz2
dtc: Fix signedness comparisons warnings: reservednum
With -Wsign-compare, compilers warn about a mismatching signedness in comparisons in code using the "reservednum" variable. There is obviously little sense in having a negative number of reserved memory entries, so let's make this variable and all its users unsigned. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Message-Id: <20210611171040.25524-6-andre.przywara@arm.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'dtc.h')
-rw-r--r--dtc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dtc.h b/dtc.h
index 6296361..47664f2 100644
--- a/dtc.h
+++ b/dtc.h
@@ -35,7 +35,7 @@
* Command line options
*/
extern int quiet; /* Level of quietness */
-extern int reservenum; /* Number of memory reservation slots */
+extern unsigned int reservenum; /* Number of memory reservation slots */
extern int minsize; /* Minimum blob size */
extern int padsize; /* Additional padding to blob */
extern int alignsize; /* Additional padding to blob accroding to the alignsize */