aboutsummaryrefslogtreecommitdiff
path: root/include/backend
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-09-14 21:14:18 -0400
committerGitHub <noreply@github.com>2018-09-14 21:14:18 -0400
commitdf991a55ab23017d4c5d90d344d472e904dc682f (patch)
treeb1c1ab11c651f0ec614446244bf29e371e6aa898 /include/backend
parent0210905eef94216c42a070b638c6f3e6d81512e2 (diff)
parentcb293f09e774d179cdd3d9351a2834d473fd823c (diff)
Merge pull request #1241 from emersion/output-enable-error-checking
output: make wlr_output_enable return a bool
Diffstat (limited to 'include/backend')
-rw-r--r--include/backend/drm/drm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h
index fe279917..25225227 100644
--- a/include/backend/drm/drm.h
+++ b/include/backend/drm/drm.h
@@ -143,6 +143,6 @@ void finish_drm_resources(struct wlr_drm_backend *drm);
void restore_drm_outputs(struct wlr_drm_backend *drm);
void scan_drm_connectors(struct wlr_drm_backend *state);
int handle_drm_event(int fd, uint32_t mask, void *data);
-void enable_drm_connector(struct wlr_output *output, bool enable);
+bool enable_drm_connector(struct wlr_output *output, bool enable);
#endif