Browse Source

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
tags/v0.5
Stefano Sabatini 17 years ago
parent
commit
a59d44fdf4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/opt.c

+ 1
- 1
libavcodec/opt.c View File

@@ -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;
}



Loading…
Cancel
Save