serial plugin: Fix -Wshorten-64-to-32 warning.
[collectd.git] / src / collectd-tg.c
index 760162c..80473e0 100644 (file)
@@ -105,7 +105,7 @@ static double dtime (void) /* {{{ */
   struct timespec ts = { 0 };
 
   if (clock_gettime (CLOCK_MONOTONIC, &ts) != 0)
-    return NAN;
+    perror ("clock_gettime");
 
   return ((double) ts.tv_sec) + (((double) ts.tv_nsec) / 1e9);
 } /* }}} double dtime */