summaryrefslogtreecommitdiff
path: root/src/lib/string.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2024-06-26 20:29:59 +0200
committerElyes Haouas <ehaouas@noos.fr>2024-06-27 03:30:46 +0000
commita3dc6c0d352d07c2e36595d3bd54c94e6898ace6 (patch)
tree3351a8af9a9bc24d9d59593a2e57a2ba2f234d25 /src/lib/string.c
parenta41e5f14071f79da07d4c0b03b17d3788e003945 (diff)
lib/string: use size_t for local variable in strncmp
Since the 'maxlen' parameter's type is changed to size_t, the type of the local variable 'i' which this is compared against should also be changed to size_t. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ibe35d3741bc6d8a16a3bad3ec27aafc30745d931 Reviewed-on: https://review.coreboot.org/c/coreboot/+/83224 Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Diffstat (limited to 'src/lib/string.c')
-rw-r--r--src/lib/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/string.c b/src/lib/string.c
index b1996ff103..a7f8074fc7 100644
--- a/src/lib/string.c
+++ b/src/lib/string.c
@@ -115,7 +115,7 @@ int strcmp(const char *s1, const char *s2)
int strncmp(const char *s1, const char *s2, size_t maxlen)
{
- int i;
+ size_t i;
for (i = 0; i < maxlen; i++) {
if ((s1[i] != s2[i]) || (s1[i] == '\0'))