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: 1 addition & 3 deletions src/sticker.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ static const char *get_sticker_oper_str(enum mpd_sticker_operator oper) {
case MPD_STICKER_OP_LT_INT: return "lt";
case MPD_STICKER_OP_CONTAINS: return "contains";
case MPD_STICKER_OP_STARTS_WITH: return "starts_with";
case MPD_STICKER_OP_UNKOWN:
case MPD_STICKER_OP_UNKNOWN: return NULL;
}
return NULL;
Expand Down Expand Up @@ -294,8 +293,7 @@ static const char *get_sticker_sort_name(enum mpd_sticker_sort sort) {
case MPD_STICKER_SORT_URI: return "uri";
case MPD_STICKER_SORT_VALUE: return "value";
case MPD_STICKER_SORT_VALUE_INT: return "value_int";
case MPD_STICKER_SORT_UNKOWN:
case MPD_STICKER_SORT_UNKNOWN: return NULL;
case MPD_STICKER_SORT_UNKNOWN: return NULL;
}
return NULL;
}
Expand Down
Loading