diff --git a/.pick_status.json b/.pick_status.json index c2dfcfd45b8..171d14dca88 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -2281,7 +2281,7 @@ "description": "vdpau: Add missing printf format specifier.", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "89b9863252272a7109d468738517a0d68376a909" }, diff --git a/src/gallium/frontends/vdpau/mixer.c b/src/gallium/frontends/vdpau/mixer.c index 98da01d3e4c..8fa0559b6e1 100644 --- a/src/gallium/frontends/vdpau/mixer.c +++ b/src/gallium/frontends/vdpau/mixer.c @@ -143,7 +143,7 @@ vlVdpVideoMixerCreate(VdpDevice device, } ret = VDP_STATUS_INVALID_VALUE; if (vmixer->max_layers > 4) { - VDPAU_MSG(VDPAU_WARN, "[VDPAU] Max layers > 4 not supported\n", vmixer->max_layers); + VDPAU_MSG(VDPAU_WARN, "[VDPAU] Max layers %u > 4 not supported\n", vmixer->max_layers); goto no_params; }