diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index 88356c6da3cceae8c8f381f31e2cdb9e8311cf63..0d10febc14a1a792c4e345649c7cc4ae98491a2b 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -201,7 +201,7 @@ static int config_input(AVFilterLink *link)
         return AVERROR(EINVAL);
 
     av_log(ctx, AV_LOG_INFO, "w:%d h:%d -> w:%d h:%d\n",
-           link->w, link->h, crop->w, crop->h, crop->x, crop->y);
+           link->w, link->h, crop->w, crop->h);
 
     if (crop->w <= 0 || crop->h <= 0 ||
         crop->w > link->w || crop->h > link->h) {