diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-12 08:29:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-12 08:29:40 +0200 |
| commit | 1ddeab9a4426abd781a5066ba79af2ba64de11d9 (patch) | |
| tree | 06155b0e26fcc2a9fc2d8e684155f82ded3d1552 /dev/LibCompiler/UUID.h | |
| parent | 87979899ce833ca477bb563b84e3698224119dab (diff) | |
| parent | 2be9a150bb742987330c6de4dac23d4d2efb1ebe (diff) | |
Merge pull request #5 from nekernel-org/dev
0.0.1e2
Diffstat (limited to 'dev/LibCompiler/UUID.h')
| -rw-r--r-- | dev/LibCompiler/UUID.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/LibCompiler/UUID.h b/dev/LibCompiler/UUID.h index d54eec7..39db276 100644 --- a/dev/LibCompiler/UUID.h +++ b/dev/LibCompiler/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; |
