Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-04-21 15:35:29 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-04-21 19:27:25 +0400
commit5e893df7ae15a536b4bb5b35647c1d8b14b348e3 (patch)
tree56059aa295fa2219e71d6aa42c4bae3dff3f85a3 /libavfilter/f_sendcmd.c
parentfd7a7e11b94b12259c6f1e375da15298cbc37e83 (diff)
lavfi/sendcmd: fix various "in in" rerepepetitions in messages
Diffstat (limited to 'libavfilter/f_sendcmd.c')
-rw-r--r--libavfilter/f_sendcmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/f_sendcmd.c b/libavfilter/f_sendcmd.c
index bb5a693fe5..2fe5eb8ab0 100644
--- a/libavfilter/f_sendcmd.c
+++ b/libavfilter/f_sendcmd.c
@@ -134,7 +134,7 @@ static int parse_command(Command *cmd, int cmd_count, int interval_count,
char flag_buf[64];
av_strlcpy(flag_buf, *buf, sizeof(flag_buf));
av_log(log_ctx, AV_LOG_ERROR,
- "Unknown flag '%s' in in interval #%d, command #%d\n",
+ "Unknown flag '%s' in interval #%d, command #%d\n",
flag_buf, interval_count, cmd_count);
return AVERROR(EINVAL);
}
@@ -166,7 +166,7 @@ static int parse_command(Command *cmd, int cmd_count, int interval_count,
cmd->target = av_get_token(buf, COMMAND_DELIMS);
if (!cmd->target || !cmd->target[0]) {
av_log(log_ctx, AV_LOG_ERROR,
- "No target specified in in interval #%d, command #%d\n",
+ "No target specified in interval #%d, command #%d\n",
interval_count, cmd_count);
ret = AVERROR(EINVAL);
goto fail;
@@ -176,7 +176,7 @@ static int parse_command(Command *cmd, int cmd_count, int interval_count,
cmd->command = av_get_token(buf, COMMAND_DELIMS);
if (!cmd->command || !cmd->command[0]) {
av_log(log_ctx, AV_LOG_ERROR,
- "No command specified in in interval #%d, command #%d\n",
+ "No command specified in interval #%d, command #%d\n",
interval_count, cmd_count);
ret = AVERROR(EINVAL);
goto fail;