diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-04 18:27:09 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2014-03-09 17:53:33 -0400 |
commit | bd4ad1a1d52b8882df016826b8bdcf7b1009cb97 (patch) | |
tree | c993cbcba3dfc2c4eede0d7dc598afc4a8ca4e9a /libavfilter | |
parent | 6230de03aad9f26d5843afb913d196622e0b5b98 (diff) | |
download | ffmpeg-bd4ad1a1d52b8882df016826b8bdcf7b1009cb97.tar.gz |
vf_frei0r: fix missing end of line character
Error introduced in 61b323ce7c7cdc101eadfd7de2203922b8a39e8d.
(cherry picked from commit 4c41a7a1798dd6c60e40f79be12faa98a9347151)
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_frei0r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_frei0r.c b/libavfilter/vf_frei0r.c index b4f4ddfffe..9c6b84b40b 100644 --- a/libavfilter/vf_frei0r.c +++ b/libavfilter/vf_frei0r.c @@ -242,7 +242,7 @@ static av_cold int frei0r_init(AVFilterContext *ctx, if (s->dl_handle) break; /* found */ if (*path) - path++ /* skip ':' */ + path++; /* skip ':' */ } } if (!s->dl_handle && (path = getenv("HOME"))) { |