mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Merge pull request #1034 from rah2501/armhf-printf-conversion-fix
wlr_linux_dmabuf: Fix printf conversion specifiers on armhf
This commit is contained in:
commit
f11ef26379
1 changed files with 2 additions and 1 deletions
|
@ -101,7 +101,8 @@ static void params_add(struct wl_client *client,
|
|||
if (buffer->has_modifier && modifier != buffer->attributes.modifier) {
|
||||
wl_resource_post_error(params_resource,
|
||||
ZWP_LINUX_BUFFER_PARAMS_V1_ERROR_INVALID_FORMAT,
|
||||
"sent modifier %lu for plane %u, expected modifier %lu like other planes",
|
||||
"sent modifier %" PRIu64 " for plane %u, expected"
|
||||
" modifier %" PRIu64 " like other planes",
|
||||
modifier, plane_idx, buffer->attributes.modifier);
|
||||
close(fd);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue