Skip to content

Commit

Permalink
dbgrpt_xevent_data(): format X11 window value using printf format %ud
Browse files Browse the repository at this point in the history
demanded by coverity
  • Loading branch information
rockowitz committed Jan 3, 2025
1 parent 3a7d6fe commit 2cd4f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ddc/ddc_watch_displays_xevent.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void dbgrpt_xevent_data(XEvent_Data* evdata, int depth) {
int d1 = depth+1;
rpt_vstring(d1, "dpy: %p", evdata->dpy);
rpt_vstring(d1, "screen: %d", evdata->screen);
rpt_vstring(d1, "w: %ul", evdata->w);
rpt_vstring(d1, "w: %ud", evdata->w);
rpt_vstring(d1, "screen_change_eventno: %d", evdata->screen_change_eventno);
}

Expand Down

0 comments on commit 2cd4f3a

Please sign in to comment.