From e97088f6f767d10ede85d36f8381e8bcd44776ca Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 5 Mar 2026 14:46:33 -0500 Subject: [PATCH] fix warning --- src/lib/trace_provider.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/trace_provider.ml b/src/lib/trace_provider.ml index 84641c30..0b3c087e 100644 --- a/src/lib/trace_provider.ml +++ b/src/lib/trace_provider.ml @@ -87,7 +87,7 @@ let with_thunk_and_finally (self : Tracer.t) ?(force_new_trace_id = false) (* called once we're done, to emit a span *) let finally res = let end_time = Clock.now self.clock in - Proto.Trace.span_set_end_time_unix_nano span end_time; + span_set_end_time_unix_nano span end_time; (match Span.status span with | Some _ -> ()