Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit efae472

Browse files
committed
Update squeeze.c
1 parent ce83370 commit efae472

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/zopfli/squeeze.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,7 @@ static double GetCostModelMinCost(CostModelFun* costmodel, void* costcontext) {
196196
return costmodel(bestlength, bestdist, costcontext);
197197
}
198198

199-
static size_t min(size_t a, size_t b)
200-
{
199+
static size_t min(size_t a, size_t b) {
201200
return a < b ? a : b;
202201
}
203202

0 commit comments

Comments
 (0)