summaryrefslogtreecommitdiff
path: root/libavformat/file.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2014-01-05 00:50:22 +0100
committerStefano Sabatini <stefasab@gmail.com>2014-01-05 00:51:38 +0100
commit22fa50d15938ffd6ebba7d711407ad3b08e616e0 (patch)
tree355dec29b80109277a288884e8bcb5028f494d1f /libavformat/file.c
parent92e145acbb9bd967f16cbebbae76c2d0a2c36c64 (diff)
downloadffmpeg-22fa50d15938ffd6ebba7d711407ad3b08e616e0.tar.gz
lavf/file: fix help message first character casing for trunc option
Diffstat (limited to 'libavformat/file.c')
-rw-r--r--libavformat/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/file.c b/libavformat/file.c
index 1d323e2137..6511328de7 100644
--- a/libavformat/file.c
+++ b/libavformat/file.c
@@ -54,7 +54,7 @@ typedef struct FileContext {
} FileContext;
static const AVOption file_options[] = {
- { "truncate", "Truncate existing files on write", offsetof(FileContext, trunc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
+ { "truncate", "truncate existing files on write", offsetof(FileContext, trunc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
{ "blocksize", "set I/O operation maximum block size", offsetof(FileContext, blocksize), AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
{ NULL }
};