summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Ekström <jeebjp@gmail.com>2019-09-21 23:46:02 +0300
committerJan Ekström <jeebjp@gmail.com>2019-09-21 23:46:41 +0300
commit6c6aba4359a753754089e8f837a954c7ae3f4464 (patch)
tree442490e4938eb78efd86980279adee24694eba48
parent0b127312bead2b577b9e713130b667d34423ec94 (diff)
downloadmpv-6c6aba4359a753754089e8f837a954c7ae3f4464.tar.bz2
mpv-6c6aba4359a753754089e8f837a954c7ae3f4464.tar.xz
vf_fingerprint: remove extraneous single quote from description
This happened to break ZSH completion and seemed to be extraneous. Reported by LaserEyess on IRC.
-rw-r--r--video/filter/vf_fingerprint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/filter/vf_fingerprint.c b/video/filter/vf_fingerprint.c
index 9f511e168f..6a6f7ab812 100644
--- a/video/filter/vf_fingerprint.c
+++ b/video/filter/vf_fingerprint.c
@@ -283,7 +283,7 @@ static struct mp_filter *f_create(struct mp_filter *parent, void *options)
const struct mp_user_filter_entry vf_fingerprint = {
.desc = {
- .description = "'Compute video frame fingerprints",
+ .description = "Compute video frame fingerprints",
.name = "fingerprint",
.priv_size = sizeof(OPT_BASE_STRUCT),
.priv_defaults = &f_opts_def,