diff options
author | bunnei <bunneidev@gmail.com> | 2021-07-29 09:37:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 09:37:15 -0700 |
commit | 5acf020389bb7c53cb9c33f618893cc9d7cd720d (patch) | |
tree | 9dd1696c7403f990c7d689f8fb1c7c59f25f1eb0 /src/common/uuid.cpp | |
parent | 124e3b4819d615667939e42c99ae9a28de11d2bc (diff) | |
parent | b9b48aee7da6fed205a009a1f9fc06c20fb2f7f2 (diff) |
Merge pull request #6742 from Morph1984/uuid
common: uuid: Return a lower-case hex string in Format
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 26db03fbab..18303a1e32 100644 --- a/src/common/uuid.cpp +++ b/src/common/uuid.cpp @@ -18,7 +18,7 @@ UUID UUID::Generate() { } std::string UUID::Format() const { - return fmt::format("0x{:016X}{:016X}", uuid[1], uuid[0]); + return fmt::format("{:016x}{:016x}", uuid[1], uuid[0]); } std::string UUID::FormatSwitch() const { |