Skip to content

Commit 56d2229

Browse files
committed
Revert "Percent: fix a copy-paste error"
This reverts commit 3345c1e.
1 parent 9a11ff8 commit 56d2229

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/percent.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ void ffPercentAppendBar(FFstrbuf* buffer, double percent, FFPercentageModuleConf
146146
for (uint8_t i = blocksPercent; i < options->barWidth; ++i)
147147
{
148148
ffStrbufAppend(buffer, borderAsValue && i == 0
149-
? &options->barBorderLeftElapsed
149+
? &options->barBorderLeft
150150
: borderAsValue && i == options->barWidth - 1
151-
? &options->barBorderRightElapsed
151+
? &options->barBorderRight
152152
: &options->barCharTotal);
153153
}
154154
}

0 commit comments

Comments
 (0)