diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-07 16:52:54 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-07 16:52:54 +0100 |
| commit | cf02a150f5bc84f722d01193d5aae91e60f69b7f (patch) | |
| tree | 79cf1db73737b23d3002eef6d856438783a0f8d8 /public/tools | |
| parent | dc2b2cdf68efb7320d51cb4241f4878ceafb04da (diff) | |
make_fs.cc: better syntax for uuid_generate_random.
Diffstat (limited to 'public/tools')
| -rw-r--r-- | public/tools/make_fs/make_fs.cc | 2 |
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)); |
