From: Mike Yuan Date: Sun, 25 Jan 2026 15:50:00 +0000 (+0100) Subject: reread-partition-table: fix typo X-Git-Tag: v260-rc1~309 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=480003c5604cd96159ac6cc51d8a974dc529ca62;p=thirdparty%2Fsystemd.git reread-partition-table: fix typo --- diff --git a/src/shared/reread-partition-table.c b/src/shared/reread-partition-table.c index 543482d4409..8f99b67134d 100644 --- a/src/shared/reread-partition-table.c +++ b/src/shared/reread-partition-table.c @@ -256,7 +256,7 @@ static int reread_partition_table_full(sd_device *dev, int fd, RereadPartitionTa if (FLAGS_SET(flags, REREADPT_BSD_LOCK)) { lock_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NOCTTY); if (lock_fd < 0) - return log_device_debug_errno(dev, lock_fd, "Failed top open lock fd for block device '%s': %m", p); + return log_device_debug_errno(dev, lock_fd, "Failed to open lock fd for block device '%s': %m", p); if (flock(lock_fd, LOCK_EX|LOCK_NB) < 0) { r = log_device_debug_errno(dev, errno, "Failed to take BSD lock on block device '%s': %m", p);