summaryrefslogtreecommitdiff
path: root/src/ildasm
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2017-07-24 07:15:39 -0700
committerJohn Doe <github.john.doe@outlook.com>2017-07-24 07:15:39 -0700
commitd016f658cd45edc2d34c0812381bb2d6625232f9 (patch)
tree3d379ad91cf5a7bf2ba6acebcc0ccb1eb249d933 /src/ildasm
parenta74c890093cebec721c586df22513f3d721b7906 (diff)
downloadcoreclr-d016f658cd45edc2d34c0812381bb2d6625232f9.tar.gz
coreclr-d016f658cd45edc2d34c0812381bb2d6625232f9.tar.bz2
coreclr-d016f658cd45edc2d34c0812381bb2d6625232f9.zip
typo
Diffstat (limited to 'src/ildasm')
-rw-r--r--src/ildasm/ceeload.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ildasm/ceeload.cpp b/src/ildasm/ceeload.cpp
index a78ff72c44..ac60b9d2a8 100644
--- a/src/ildasm/ceeload.cpp
+++ b/src/ildasm/ceeload.cpp
@@ -143,7 +143,7 @@ BOOL PELoader::open(HMODULE hMod)
if ((m_pNT32->Signature != VAL32(IMAGE_NT_SIGNATURE)) ||
(m_pNT32->FileHeader.SizeOfOptionalHeader != VAL16(sizeof(IMAGE_OPTIONAL_HEADER32))))
{
- // Make this appear uninitalized because for some reason this file is toasted.
+ // Make this appear uninitialized because for some reason this file is toasted.
m_pNT32 = NULL;
m_hMod = NULL;
return FALSE;
@@ -155,7 +155,7 @@ BOOL PELoader::open(HMODULE hMod)
if ((m_pNT64->Signature != VAL32(IMAGE_NT_SIGNATURE)) ||
(m_pNT64->FileHeader.SizeOfOptionalHeader != VAL16(sizeof(IMAGE_OPTIONAL_HEADER64))))
{
- // Make this appear uninitalized because for some reason this file is toasted.
+ // Make this appear uninitialized because for some reason this file is toasted.
m_pNT64 = NULL;
m_hMod = NULL;
return FALSE;
@@ -166,7 +166,7 @@ BOOL PELoader::open(HMODULE hMod)
}
else
{
- // Make this appear uninitalized because for some reason this file is toasted.
+ // Make this appear uninitialized because for some reason this file is toasted.
m_hMod = NULL;
return FALSE;
}