Skip to content

Commit

Permalink
Fix bad param list in generic_seq_removeif()
Browse files Browse the repository at this point in the history
  • Loading branch information
GrieferAtWork committed May 18, 2024
1 parent aedef13 commit eab4cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deemon/objects/seq/default-api-mutable.c
Original file line number Diff line number Diff line change
Expand Up @@ -2272,7 +2272,7 @@ generic_seq_removeif(DeeObject *self, size_t argc, DeeObject *const *argv, DeeOb
DeeObject *should;
size_t start = 0, end = (size_t)-1, max = (size_t)-1;
if (DeeArg_UnpackKw(argc, argv, kw, kwlist__should_start_end_max,
"o|" UNPuSIZ UNPuSIZ UNPuSIZ "o:removeall",
"o|" UNPuSIZ UNPuSIZ UNPuSIZ ":removeif",
&should, &start, &end, &max))
goto err;
result = new_DeeSeq_RemoveIf(self, should, start, end, max);
Expand Down

0 comments on commit eab4cda

Please sign in to comment.