From b3938159169b7715016ab1510f68e245a8a7dcee Mon Sep 17 00:00:00 2001
From: Steffen Vogel <post@steffenvogel.de>
Date: Tue, 4 Dec 2018 10:46:16 +0100
Subject: [PATCH] csv: ignore offset field

---
 lib/formats/csv.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/formats/csv.c b/lib/formats/csv.c
index b21e8b09b..6089b3b5d 100644
--- a/lib/formats/csv.c
+++ b/lib/formats/csv.c
@@ -96,11 +96,13 @@ static size_t csv_sscan_single(struct io *io, const char *buf, size_t len, struc
 
 	smp->flags |= SAMPLE_HAS_TS_ORIGIN;
 
+#if 0
 	double offset __attribute__((unused)) = strtof(ptr, &end);
 	if (end == ptr || *end == io->delimiter)
 		goto out;
 
 	ptr = end + 1;
+#endif
 
 	smp->sequence = strtoul(ptr, &end, 10);
 	if (end == ptr || *end == io->delimiter)