aboutsummaryrefslogtreecommitdiff
path: root/src/burn
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn')
-rw-r--r--src/burn/engine/section.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/section.cpp b/src/burn/engine/section.cpp
index 989bfb17..fd3ce92c 100644
--- a/src/burn/engine/section.cpp
+++ b/src/burn/engine/section.cpp
@@ -369,7 +369,7 @@ HRESULT VerifySectionMatchesMemoryPEHeader(
369 if (sizeof(BURN_SECTION_HEADER) > pSectionHeader->SizeOfRawData) 369 if (sizeof(BURN_SECTION_HEADER) > pSectionHeader->SizeOfRawData)
370 { 370 {
371 hr = HRESULT_FROM_WIN32(ERROR_INVALID_DATA); 371 hr = HRESULT_FROM_WIN32(ERROR_INVALID_DATA);
372 ExitOnRootFailure(hr, "Failed to read section info, data to short: %u", pSectionHeader->SizeOfRawData); 372 ExitOnRootFailure(hr, "Failed to read section info, data too short: %u", pSectionHeader->SizeOfRawData);
373 } 373 }
374 374
375 // Get Burn section info. 375 // Get Burn section info.