From cf02a150f5bc84f722d01193d5aae91e60f69b7f Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 7 Mar 2025 16:52:54 +0100 Subject: make_fs.cc: better syntax for uuid_generate_random. --- public/tools/make_fs/make_fs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- cgit v1.2.3