diff options
| author | 2023-06-09 05:12:22 +0500 | |
|---|---|---|
| committer | 2023-06-09 05:12:22 +0500 | |
| commit | 007c3fa7dfc146244d3974955aa78eaacb1c2bf6 (patch) | |
| tree | 26b7476584242945d10e904a07786e8e4a66f28e /src/common/uuid.cpp | |
| parent | Merge pull request #10650 from qurious-pixel/android_tv (diff) | |
| download | yuzu-007c3fa7dfc146244d3974955aa78eaacb1c2bf6.tar.gz yuzu-007c3fa7dfc146244d3974955aa78eaacb1c2bf6.tar.xz yuzu-007c3fa7dfc146244d3974955aa78eaacb1c2bf6.zip | |
Fix potentially uninitialized local variable warning
Diffstat (limited to 'src/common/uuid.cpp')
| -rw-r--r-- | src/common/uuid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/uuid.cpp b/src/common/uuid.cpp index 89e1ed225..035df7fe0 100644 --- a/src/common/uuid.cpp +++ b/src/common/uuid.cpp | |||
| @@ -48,7 +48,7 @@ std::array<u8, 0x10> ConstructFromRawString(std::string_view raw_string) { | |||
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | std::array<u8, 0x10> ConstructFromFormattedString(std::string_view formatted_string) { | 50 | std::array<u8, 0x10> ConstructFromFormattedString(std::string_view formatted_string) { |
| 51 | std::array<u8, 0x10> uuid; | 51 | std::array<u8, 0x10> uuid{}; |
| 52 | 52 | ||
| 53 | size_t i = 0; | 53 | size_t i = 0; |
| 54 | 54 | ||