diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-01-27 14:14:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-27 14:14:12 -0500 |
commit | facc5ef93a705b4c4cbe4acb6ebd44b256db5d3e (patch) | |
tree | 518b92ae08a2609451005e35f4606804dcfd6fa0 /backend | |
parent | 174d1aa81bac9d8795e7047686d51c5b7e75d578 (diff) | |
parent | d7dfbd23faf0b72a58da58f060a98e9b0023256b (diff) |
Merge pull request #588 from agx/arm
Fix warnings on arm-linux
Diffstat (limited to 'backend')
-rw-r--r-- | backend/drm/drm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c index 47bd4e3a..63a6e2da 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -459,7 +459,7 @@ static bool wlr_drm_connector_set_mode(struct wlr_output *output, if (!crtc) { return false; } - wlr_log(L_DEBUG, "%s: crtc=%ju ovr=%jd pri=%jd cur=%jd", conn->output.name, + wlr_log(L_DEBUG, "%s: crtc=%td ovr=%td pri=%td cur=%td", conn->output.name, crtc - drm->crtcs, crtc->overlay ? crtc->overlay - drm->overlay_planes : -1, crtc->primary ? crtc->primary - drm->primary_planes : -1, |