Merge pull request #405 from rgnstf2712/fix-typos

Fix typos
This commit is contained in:
Scott Anderson 2017-11-11 15:09:26 +13:00 committed by GitHub
commit 698a172701
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ static bool logind_change_vt(struct wlr_session *base, unsigned vt) {
return ret >= 0; return ret >= 0;
} }
static bool find_sesion_path(struct logind_session *session) { static bool find_session_path(struct logind_session *session) {
int ret; int ret;
sd_bus_message *msg = NULL; sd_bus_message *msg = NULL;
sd_bus_error error = SD_BUS_ERROR_NULL; sd_bus_error error = SD_BUS_ERROR_NULL;
@ -303,7 +303,7 @@ static bool add_signal_matches(struct logind_session *session) {
"member='%s'," "member='%s',"
"path='%s'"; "path='%s'";
snprintf(str, sizeof(str), fmt, "Manager", "SesssionRemoved", "/org/freedesktop/login1"); snprintf(str, sizeof(str), fmt, "Manager", "SessionRemoved", "/org/freedesktop/login1");
ret = sd_bus_add_match(session->bus, NULL, str, session_removed, session); ret = sd_bus_add_match(session->bus, NULL, str, session_removed, session);
if (ret < 0) { if (ret < 0) {
wlr_log(L_ERROR, "Failed to add D-Bus match: %s", strerror(-ret)); wlr_log(L_ERROR, "Failed to add D-Bus match: %s", strerror(-ret));
@ -368,7 +368,7 @@ static struct wlr_session *logind_session_create(struct wl_display *disp) {
goto error; goto error;
} }
if (!find_sesion_path(session)) { if (!find_session_path(session)) {
sd_bus_unref(session->bus); sd_bus_unref(session->bus);
goto error; goto error;
} }