diff options
| author | 2023-04-02 19:02:04 -0400 | |
|---|---|---|
| committer | 2023-04-02 19:02:04 -0400 | |
| commit | a9623d5f550c8fc63f436a40f43bfbf539ac0853 (patch) | |
| tree | b6513dfee3b8410ab61d5e9ea799e757f049a1de /src/web_service/verify_login.cpp | |
| parent | Merge pull request #10005 from liamwhite/kernel-atomics (diff) | |
| download | yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.gz yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.xz yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.zip | |
general: fixes for gcc 13
Diffstat (limited to '')
| -rw-r--r-- | src/web_service/verify_login.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web_service/verify_login.cpp b/src/web_service/verify_login.cpp index 050080278..d5b7161cb 100644 --- a/src/web_service/verify_login.cpp +++ b/src/web_service/verify_login.cpp | |||
| @@ -21,7 +21,7 @@ bool VerifyLogin(const std::string& host, const std::string& username, const std | |||
| 21 | return username.empty(); | 21 | return username.empty(); |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | return username == *iter; | 24 | return *iter == username; |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | } // namespace WebService | 27 | } // namespace WebService |