From 2a10774caa32dcee7548a3f6c0d139a1f9248070 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 2 May 2023 12:03:32 +0200 Subject: [PATCH] mount-setup: use size_t when iterating through array indexes --- src/shared/mount-setup.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/shared/mount-setup.c b/src/shared/mount-setup.c index 1303b6c71b3..a920e8a92a8 100644 --- a/src/shared/mount-setup.c +++ b/src/shared/mount-setup.c @@ -115,12 +115,10 @@ static const MountPoint mount_table[] = { }; bool mount_point_is_api(const char *path) { - unsigned i; - /* Checks if this mount point is considered "API", and hence * should be ignored */ - for (i = 0; i < ELEMENTSOF(mount_table); i ++) + for (size_t i = 0; i < ELEMENTSOF(mount_table); i ++) if (path_equal(path, mount_table[i].where)) return true; -- 2.47.3