diff options
Diffstat (limited to 'src/shared/os-util.c')
-rw-r--r-- | src/shared/os-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/os-util.c b/src/shared/os-util.c index b2d5ce32e7..2191a610ae 100644 --- a/src/shared/os-util.c +++ b/src/shared/os-util.c @@ -15,7 +15,7 @@ int path_is_os_tree(const char *path) { assert(path); /* Does the path exist at all? If not, generate an error immediately. This is useful so that a missing root dir - * always results in -ENOENT, and we can properly distuingish the case where the whole root doesn't exist from + * always results in -ENOENT, and we can properly distinguish the case where the whole root doesn't exist from * the case where just the os-release file is missing. */ if (laccess(path, F_OK) < 0) return -errno; |