partition/intel: Fix GPT error language.

* Yeah, intel shouldn't support GPT :-)
This commit is contained in:
Alexander von Gluck IV 2014-09-01 19:41:19 +00:00
parent f9f3b564ac
commit f3ed89bb64
1 changed files with 1 additions and 2 deletions

View File

@ -326,8 +326,7 @@ PartitionMapParser::_ReadPartitionTable(off_t offset, partition_table* table)
return bytesRead < 0 ? errno : B_IO_ERROR; return bytesRead < 0 ? errno : B_IO_ERROR;
} }
if (memcmp(gptSignature, kGPTSignature, kGPTSignatureSize) == 0) { if (memcmp(gptSignature, kGPTSignature, kGPTSignatureSize) == 0) {
ERROR(("Error: Disk is GPT-formatted: " ERROR(("intel: Found GPT signature, ignoring.\n"));
"GPT disks are currently unsupported.\n"));
return B_BAD_DATA; return B_BAD_DATA;
} }