diff options
author | Leah Neukirchen <leah@vuxu.org> | 2023-10-26 15:12:19 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2023-10-26 15:12:19 +0200 |
commit | 594c01b509eb69aac3d3213cd3065dbdb596d959 (patch) | |
tree | 3cd78f55f38a8519a2c68ac4affd1fe984c8f874 | |
parent | 1074c1614e218bf9b096837754ce424a48cbcc9e (diff) | |
download | mico-master.tar.gz mico-master.tar.xz mico-master.zip |
-rw-r--r-- | mico-sort.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mico-sort.c b/mico-sort.c index 533eea5..9dc61dc 100644 --- a/mico-sort.c +++ b/mico-sort.c @@ -162,7 +162,8 @@ main() v = metrics[m].value[i].v; if (t == pt) { - fprintf(stderr, "duplicate timestamp: %ld", t); + fprintf(stderr, "duplicate timestamp: %s %ld\n", + metrics[m].key, t); continue; } |