Skip to content

Commit e1e9b43

Browse files
committed
adjust comments
1 parent 6a8a59b commit e1e9b43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lld/COFF/DriverUtils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ void LinkerDriver::parseDosStub(StringRef path) {
252252
size_t bufferSize = stub->getBufferSize();
253253
const char *bufferStart = stub->getBufferStart();
254254
// MS link.exe compatibility:
255-
// 1. stub must be greater than or equal to 64 bytes
256-
// 2. stub must be start with a valid dos signature 'MZ'
255+
// 1. stub must greater than or equal to 64 bytes
256+
// 2. stub must start with a valid dos signature 'MZ'
257257
if (bufferSize < 0x40)
258258
Err(ctx) << "/stub: stub must be greater than or equal to 64 bytes: "
259259
<< path;

0 commit comments

Comments
 (0)