diff options
| author | Amlal <amlal@nekernel.org> | 2025-08-09 19:53:40 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-08-09 19:53:40 +0200 |
| commit | 85a8e5967def8164b90824c9095c3a93d62d96b2 (patch) | |
| tree | 85cf5ab710ba67f25c99eab5e4c81a71aece6892 /dev/CompilerKit/UUID.h | |
| parent | 72d1918de80edb8d3a260f6ae3a1613435f2302a (diff) | |
feat: compiler_kit: post PR compiler error fixes.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/UUID.h')
| -rw-r--r-- | dev/CompilerKit/UUID.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/CompilerKit/UUID.h b/dev/CompilerKit/UUID.h index 39db276..d54eec7 100644 --- a/dev/CompilerKit/UUID.h +++ b/dev/CompilerKit/UUID.h @@ -172,7 +172,7 @@ namespace Detail { process_byte(static_cast<unsigned char>((bitCount >> 24) & 0xFF)); process_byte(static_cast<unsigned char>((bitCount >> 16) & 0xFF)); process_byte(static_cast<unsigned char>((bitCount >> 8) & 0xFF)); - process_byte(static_cast<unsigned char>((bitCount) &0xFF)); + process_byte(static_cast<unsigned char>((bitCount) & 0xFF)); memcpy(digest, m_digest, 5 * sizeof(uint32_t)); return digest; |
