From bcb8d9eb8ff6e8f1e4c02d0143407373cffdbdeb Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 31 Dec 2012 00:29:36 +0100 Subject: 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. --- libavfilter/vf_frei0r.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_frei0r.c') diff --git a/libavfilter/vf_frei0r.c b/libavfilter/vf_frei0r.c index fd053906ce..955d0b9f83 100644 --- a/libavfilter/vf_frei0r.c +++ b/libavfilter/vf_frei0r.c @@ -189,7 +189,7 @@ static int set_params(AVFilterContext *ctx, const char *params) case F0R_PARAM_POSITION: v = &pos; frei0r->get_param_value(frei0r->instance, v, i); - av_log(ctx, AV_LOG_DEBUG, "%lf/%lf", pos.x, pos.y); + av_log(ctx, AV_LOG_DEBUG, "%f/%f", pos.x, pos.y); break; default: /* F0R_PARAM_STRING */ v = s; -- cgit v1.2.3