1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

input: make parse_cmd_strv take const args

This commit is contained in:
Martin Herkt 2013-12-20 19:32:45 +01:00
parent 2f6144c74b
commit 2d3c7f3b90
2 changed files with 2 additions and 2 deletions

View File

@ -1158,7 +1158,7 @@ mp_cmd_t *mp_input_parse_cmd(struct input_ctx *ictx, bstr str, const char *loc)
}
struct mp_cmd *mp_input_parse_cmd_strv(struct mp_log *log, int def_flags,
char **argv, const char *location)
const char **argv, const char *location)
{
bstr args[MP_CMD_MAX_ARGS];
int num = 0;

View File

@ -236,7 +236,7 @@ struct mp_cmd *mp_input_parse_cmd(struct input_ctx *ictx, bstr str,
// i.e. a ";" argument does not start a new command.
// The _strv version is limitted to MP_CMD_MAX_ARGS argv array items.
struct mp_cmd *mp_input_parse_cmd_strv(struct mp_log *log, int def_flags,
char **argv, const char *location);
const char **argv, const char *location);
struct mp_cmd *mp_input_parse_cmd_bstrv(struct mp_log *log, int def_flags,
int argc, bstr *argv,
const char *location);