summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/UUID.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-12 08:29:40 +0200
committerGitHub <noreply@github.com>2025-05-12 08:29:40 +0200
commit1ddeab9a4426abd781a5066ba79af2ba64de11d9 (patch)
tree06155b0e26fcc2a9fc2d8e684155f82ded3d1552 /dev/LibCompiler/UUID.h
parent87979899ce833ca477bb563b84e3698224119dab (diff)
parent2be9a150bb742987330c6de4dac23d4d2efb1ebe (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.h2
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;