summaryrefslogtreecommitdiff
path: root/libavcodec/opt.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-12-15 22:40:28 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-12-15 22:40:28 +0000
commita59d44fdf47f0584f919cc5b7440741e40c28c6d (patch)
treeb052837690ce15dae46ce44d18002b81e8d77a42 /libavcodec/opt.c
parent68178ca9e1ffcd42569a85a56435835116f4ce09 (diff)
Remove ending period in a log message, which was inconsistent with
most other messages. Originally committed as revision 16155 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/opt.c')
-rw-r--r--libavcodec/opt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opt.c b/libavcodec/opt.c
index e1fb1e00d1..7932d5a84e 100644
--- a/libavcodec/opt.c
+++ b/libavcodec/opt.c
@@ -54,7 +54,7 @@ static const AVOption *av_set_number(void *obj, const char *name, double num, in
return NULL;
if(o->max*den < num*intnum || o->min*den > num*intnum) {
- av_log(NULL, AV_LOG_ERROR, "Value %lf for parameter '%s' out of range.\n", num, name);
+ av_log(NULL, AV_LOG_ERROR, "Value %lf for parameter '%s' out of range\n", num, name);
return NULL;
}