summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vc-log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vc-log.c b/vc-log.c
index 7526db2..56ce5ef 100644
--- a/vc-log.c
+++ b/vc-log.c
@@ -219,7 +219,7 @@ static void vc_log_read(size_t descriptor_ptr) {
if(!s) abort();
vc_read(s, at + 12, len);
s[len] = 0;
- printf("[%u : %u] %s\n", time, seq, s);
+ printf("[%5u.%06u] %s\n", time / 1000000, time % 1000000, s);
free(s);
at += size;