summaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-07 16:52:54 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-07 16:52:54 +0100
commitcf02a150f5bc84f722d01193d5aae91e60f69b7f (patch)
tree79cf1db73737b23d3002eef6d856438783a0f8d8 /public
parentdc2b2cdf68efb7320d51cb4241f4878ceafb04da (diff)
make_fs.cc: better syntax for uuid_generate_random.
Diffstat (limited to 'public')
-rw-r--r--public/tools/make_fs/make_fs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/tools/make_fs/make_fs.cc b/public/tools/make_fs/make_fs.cc
index f75527b1..98c31346 100644
--- a/public/tools/make_fs/make_fs.cc
+++ b/public/tools/make_fs/make_fs.cc
@@ -34,7 +34,7 @@ int main(int argc, char** argv)
::memcpy(block.Name, kDiskName, strlen(kDiskName));
::memcpy(block.Magic, kEPMMagic86, strlen(kEPMMagic86));
- uuid_generate_random((NeOS::UInt8*)&block.Guid);
+ ::uuid_generate_random((NeOS::UInt8*)&block.Guid);
std::ofstream output_epm("disk.eimg");
output_epm.write((NeOS::Char*)&block, sizeof(struct EPM_PART_BLOCK));