Index: libcfa/src/time_t.hfa
===================================================================
--- libcfa/src/time_t.hfa	(revision ffe2fad44a1e0e5936b3a5eb325178f2f44fcf5f)
+++ libcfa/src/time_t.hfa	(revision 7030dab75c493bbd89de53cb88e496019c794ff4)
@@ -10,6 +10,6 @@
 // Created On       : Tue Apr 10 14:42:03 2018
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Apr 13 07:51:47 2018
-// Update Count     : 6
+// Last Modified On : Sun Jan  5 08:22:46 2020
+// Update Count     : 7
 //
 
@@ -20,9 +20,9 @@
 
 struct Duration {										// private
-	int64_t tv;											// nanoseconds
+	int64_t tn;											// nanoseconds
 }; // Duration
 
-static inline void ?{}( Duration & dur ) with( dur ) { tv = 0; }
-static inline void ?{}( Duration & dur, __attribute__((unused)) zero_t ) with( dur ) { tv = 0; }
+static inline void ?{}( Duration & dur ) with( dur ) { tn = 0; }
+static inline void ?{}( Duration & dur, __attribute__((unused)) zero_t ) with( dur ) { tn = 0; }
 
 
@@ -30,9 +30,9 @@
 
 struct Time {											// private
-	uint64_t tv;										// nanoseconds since UNIX epoch
+	uint64_t tn;										// nanoseconds since UNIX epoch
 }; // Time
 
-static inline void ?{}( Time & time ) with( time ) { tv = 0; }
-static inline void ?{}( Time & time, __attribute__((unused)) zero_t ) with( time ) { tv = 0; }
+static inline void ?{}( Time & time ) with( time ) { tn = 0; }
+static inline void ?{}( Time & time, __attribute__((unused)) zero_t ) with( time ) { tn = 0; }
 
 // Local Variables: //
