From c1f568b1f3741c9ea7112c66102b29dfbe424c02 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 14 Oct 2025 14:26:00 -0600 Subject: [PATCH] fix typo/cut-n-paste error in SegmentDescriptor duration assignment --- libs/ardour/segment_descriptor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/segment_descriptor.cc b/libs/ardour/segment_descriptor.cc index 336a8b8aeb..754b127053 100644 --- a/libs/ardour/segment_descriptor.cc +++ b/libs/ardour/segment_descriptor.cc @@ -77,7 +77,7 @@ SegmentDescriptor::set_duration (samplepos_t s) /* XXX error */ return; } - _position_samples = s; + _duration_samples = s; } void