diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-05-21 09:36:42 +0900 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-05-21 09:36:49 +0900 |
commit | a57a27b2effe92f749a565df4f1276376b2d6dbc (patch) | |
tree | 7ad0a86c92b29115c5fc868450652b4967a5e8eb /src/timesync | |
parent | f7dc3ab9f43b67abcbd34062b9352ab42debec49 (diff) |
timesyncd: fix english language typo
Diffstat (limited to 'src/timesync')
-rw-r--r-- | src/timesync/timesyncd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timesync/timesyncd.c b/src/timesync/timesyncd.c index 6935635a5e..b13db1a3ec 100644 --- a/src/timesync/timesyncd.c +++ b/src/timesync/timesyncd.c @@ -175,7 +175,7 @@ static int load_clock(uid_t uid, gid_t gid) { ct = now(CLOCK_REALTIME); if (nt > ct) { struct timespec ts; - log_info("System clock time unset or jumed backwards, restoring."); + log_info("System clock time unset or jumped backwards, restoring."); if (clock_settime(CLOCK_REALTIME, timespec_store(&ts, nt)) < 0) log_error("Failed to restore system clock: %m"); |