diff options
Diffstat (limited to 'src/shared/mount-setup.c')
-rw-r--r-- | src/shared/mount-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/mount-setup.c b/src/shared/mount-setup.c index 1226ca121e..d9de2789a5 100644 --- a/src/shared/mount-setup.c +++ b/src/shared/mount-setup.c @@ -135,7 +135,7 @@ bool mount_point_is_api(const char *path) { /* Checks if this mount point is considered "API", and hence * should be ignored */ - for (size_t 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; |