Skip to content

Commit 80767a2

Browse files
committed
Format lld/MachO/InputFiles.cpp
1 parent f5fef9b commit 80767a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lld/MachO/InputFiles.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ std::optional<MemoryBufferRef> macho::readFile(StringRef path) {
218218
return entry->second;
219219

220220
ErrorOr<std::unique_ptr<MemoryBuffer>> mbOrErr =
221-
MemoryBuffer::getFile(path, false, /*RequiresNullTerminator*/ false);
221+
MemoryBuffer::getFile(path, false, /*RequiresNullTerminator=*/false);
222222
if (std::error_code ec = mbOrErr.getError()) {
223223
error("cannot open " + path + ": " + ec.message());
224224
return std::nullopt;

0 commit comments

Comments
 (0)