Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions chafa/internal/chafa-palette.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ init_candidates (ChafaColorCandidates *candidates)
candidates->error [0] = candidates->error [1] = G_MAXINT;
}

static gboolean
static inline gboolean
update_candidates (ChafaColorCandidates *candidates, gint index, gint error)
{
if (error < candidates->error [0])
Expand Down Expand Up @@ -237,7 +237,7 @@ chafa_init_palette (void)
palette_initialized = TRUE;
}

static gint
static inline gint
update_candidates_with_color_index_diff (ChafaColorCandidates *candidates, ChafaColorSpace color_space, const ChafaColor *color, gint index)
{
const ChafaColor *palette_color;
Expand Down
Loading