chiark / gitweb /
Fix typo in function name (#5565)
authorMichal Sekletar <msekletar@users.noreply.github.com>
Fri, 10 Mar 2017 14:16:24 +0000 (15:16 +0100)
committerSven Eden <yamakuzure@gmx.net>
Tue, 25 Jul 2017 07:44:34 +0000 (09:44 +0200)
man/sd_login_monitor_new.xml

index d91a9d526e94f4990aa053a9866ffacbb2eedb32..c6c58390a2b863705bd9973fc9e1ce794b2dfb19 100644 (file)
@@ -203,7 +203,7 @@ if (t == (uint64_t) -1)
 else {
          struct timespec ts;
          uint64_t n;
-         clock_getttime(CLOCK_MONOTONIC, &amp;ts);
+         clock_gettime(CLOCK_MONOTONIC, &amp;ts);
          n = (uint64_t) ts.tv_sec * 1000000 + ts.tv_nsec / 1000;
          msec = t > n ? (int) ((t - n + 999) / 1000) : 0;
 }</programlisting>