summaryrefslogtreecommitdiffhomepage
path: root/tooling
diff options
context:
space:
mode:
Diffstat (limited to 'tooling')
-rw-r--r--tooling/mkfs.hefs.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/tooling/mkfs.hefs.cc b/tooling/mkfs.hefs.cc
index e9cae578..542ae175 100644
--- a/tooling/mkfs.hefs.cc
+++ b/tooling/mkfs.hefs.cc
@@ -115,14 +115,13 @@ int main(int argc, char** argv) {
auto cnt = end_ind / sizeof(mkfs::hefs::IndexNodeDirectory);
auto start = bootNode.startIND;
- auto prev = start;
+ auto prev = start;
// Pre-allocate index node directory tree
for (size_t i = 0; i < cnt; ++i) {
mkfs::hefs::IndexNodeDirectory indexNode{};
- std::memcpy(indexNode.name, u"/",
- std::u16string(u"/").size() * sizeof(char16_t));
+ std::memcpy(indexNode.name, u"/", std::u16string(u"/").size() * sizeof(char16_t));
indexNode.flags = mkfs::hefs::kHeFSEncodingUTF16;
indexNode.kind = mkfs::hefs::kHeFSFileKindDirectory;