mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Fix incorrect %zd formatting directives
%zd is for ssize_t. For size_t we should use %zu.
This commit is contained in:
parent
36a2b19485
commit
818fc4a87b
3 changed files with 6 additions and 6 deletions
|
|
@ -118,12 +118,12 @@ struct wlr_output *wlr_headless_add_output(struct wlr_backend *wlr_backend,
|
|||
strncpy(wlr_output->model, "headless", sizeof(wlr_output->model));
|
||||
|
||||
char name[64];
|
||||
snprintf(name, sizeof(name), "HEADLESS-%zd", ++backend->last_output_num);
|
||||
snprintf(name, sizeof(name), "HEADLESS-%zu", ++backend->last_output_num);
|
||||
wlr_output_set_name(wlr_output, name);
|
||||
|
||||
char description[128];
|
||||
snprintf(description, sizeof(description),
|
||||
"Headless output %zd", backend->last_output_num);
|
||||
"Headless output %zu", backend->last_output_num);
|
||||
wlr_output_set_description(wlr_output, description);
|
||||
|
||||
struct wl_event_loop *ev = wl_display_get_event_loop(backend->display);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue