Skip to content

Commit 0a493f6

Browse files
committed
asdf
1 parent 75af768 commit 0a493f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/libs/tracing/tracing_export.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ module Destination = struct
296296
let rec span_info_chunks span_info batch_size =
297297
let rec list_to_chunks_inner l n curr chunks =
298298
if n = 0 then
299-
if List.length l > 0 then
299+
if l <> [] then
300300
list_to_chunks_inner l batch_size [] ((curr, batch_size) :: chunks)
301301
else
302302
(curr, batch_size) :: chunks

0 commit comments

Comments
 (0)