From 95b89cd122f32015684fe4a95d673be0d3362d7c Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Tue, 31 Aug 2010 03:56:47 +0000 Subject: [PATCH] Leland's patch that fixes bug 199 --- src/effects/FindClipping.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/FindClipping.cpp b/src/effects/FindClipping.cpp index 4e28d1075..373da6e1a 100644 --- a/src/effects/FindClipping.cpp +++ b/src/effects/FindClipping.cpp @@ -183,7 +183,7 @@ bool EffectFindClipping::ProcessOne(LabelTrack * l, if (stoprun >= mStop) { l->AddLabel(startTime, t->LongSamplesToTime(start + s - mStop), - wxString::Format(wxT("%d of %d"), startrun, samps - mStop)); + wxString::Format(wxT("%lld of %lld"), startrun, samps - mStop)); startrun = 0; stoprun = 0; samps = 0;