summaryrefslogtreecommitdiff
path: root/libavutil/opt.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-12-31 00:29:36 +0100
committerDiego Biurrun <diego@biurrun.de>2012-12-31 11:20:45 +0100
commitbcb8d9eb8ff6e8f1e4c02d0143407373cffdbdeb (patch)
tree9c2a1c26e404de4768119767201892aa350899d3 /libavutil/opt.c
parent117f79de2d0cbae22d997c79ea442ee139e8dcf6 (diff)
Drop unnecessary 'l' length modifier when printfing double values.
%f denotes a double argument and 'l' does nothing in this case according to the C spec.
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r--libavutil/opt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c
index 8a98a9ef55..04f441338d 100644
--- a/libavutil/opt.c
+++ b/libavutil/opt.c
@@ -62,7 +62,7 @@ static int read_number(const AVOption *o, void *dst, double *num, int *den, int6
static int write_number(void *obj, const AVOption *o, void *dst, double num, int den, int64_t intnum)
{
if (o->max*den < num*intnum || o->min*den > num*intnum) {
- av_log(obj, AV_LOG_ERROR, "Value %lf for parameter '%s' out of range\n",
+ av_log(obj, AV_LOG_ERROR, "Value %f for parameter '%s' out of range\n",
num*intnum/den, o->name);
return AVERROR(ERANGE);
}