Rename functions to be consistent with #93

This commit is contained in:
Scott Anderson 2017-08-26 11:56:43 +12:00
parent f10da8291b
commit 46823152ea
9 changed files with 22 additions and 22 deletions

View file

@ -85,7 +85,7 @@ struct wlr_backend *wlr_backend_autocreate(struct wl_display *display) {
// Attempt DRM+libinput
struct wlr_session *session = wlr_session_start(display);
struct wlr_session *session = wlr_session_create(display);
if (!session) {
wlr_log(L_ERROR, "Failed to start a DRM session");
return NULL;
@ -131,6 +131,6 @@ error_gpu:
error_udev:
wlr_udev_destroy(udev);
error_session:
wlr_session_finish(session);
wlr_session_destroy(session);
return NULL;
}