diff options
| author | 2023-03-11 22:10:38 -0500 | |
|---|---|---|
| committer | 2023-03-12 11:33:01 -0400 | |
| commit | 600f325d87e42f856da58c42a5280f098ebb6e8c (patch) | |
| tree | 75c4fe48af55186a4e420e94a1d7e1bfd92e4ec0 /src/core/hle/kernel/svc | |
| parent | general: use codespell to identify spelling mistakes (diff) | |
| download | yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.gz yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.xz yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.zip | |
general: fix spelling mistakes
Diffstat (limited to 'src/core/hle/kernel/svc')
| -rw-r--r-- | src/core/hle/kernel/svc/svc_event.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/kernel/svc/svc_session.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc/svc_event.cpp b/src/core/hle/kernel/svc/svc_event.cpp index a948493e8..8692b00f2 100644 --- a/src/core/hle/kernel/svc/svc_event.cpp +++ b/src/core/hle/kernel/svc/svc_event.cpp | |||
| @@ -85,7 +85,7 @@ Result CreateEvent(Core::System& system, Handle* out_write, Handle* out_read) { | |||
| 85 | // Add the event to the handle table. | 85 | // Add the event to the handle table. |
| 86 | R_TRY(handle_table.Add(out_write, event)); | 86 | R_TRY(handle_table.Add(out_write, event)); |
| 87 | 87 | ||
| 88 | // Ensure that we maintaing a clean handle state on exit. | 88 | // Ensure that we maintain a clean handle state on exit. |
| 89 | auto handle_guard = SCOPE_GUARD({ handle_table.Remove(*out_write); }); | 89 | auto handle_guard = SCOPE_GUARD({ handle_table.Remove(*out_write); }); |
| 90 | 90 | ||
| 91 | // Add the readable event to the handle table. | 91 | // Add the readable event to the handle table. |
diff --git a/src/core/hle/kernel/svc/svc_session.cpp b/src/core/hle/kernel/svc/svc_session.cpp index 00fd1605e..6dd242dcf 100644 --- a/src/core/hle/kernel/svc/svc_session.cpp +++ b/src/core/hle/kernel/svc/svc_session.cpp | |||
| @@ -81,7 +81,7 @@ Result CreateSession(Core::System& system, Handle* out_server, Handle* out_clien | |||
| 81 | const auto result = handle_table.Add(out_client, &session->GetClientSession()); | 81 | const auto result = handle_table.Add(out_client, &session->GetClientSession()); |
| 82 | 82 | ||
| 83 | if (!R_SUCCEEDED(result)) { | 83 | if (!R_SUCCEEDED(result)) { |
| 84 | // Ensure that we maintaing a clean handle state on exit. | 84 | // Ensure that we maintain a clean handle state on exit. |
| 85 | handle_table.Remove(*out_server); | 85 | handle_table.Remove(*out_server); |
| 86 | } | 86 | } |
| 87 | 87 | ||