summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoderick W. Smith <rodsmith@rodsbooks.com>2014-03-29 00:27:33 -0400
committerRoderick W. Smith <rodsmith@rodsbooks.com>2014-03-29 00:27:33 -0400
commitf694803eca2074523b8e502d386ca03b5642a63b (patch)
tree62daa407de2c4354f871df1b3b45a356fcff1d43
parente62b52732689bc467051688647dbad3d5daa5cb6 (diff)
downloadsgdisk-f694803eca2074523b8e502d386ca03b5642a63b.tar.gz
Fixes for minor typos and trivial bugs.
-rw-r--r--gptpart.cc2
-rw-r--r--gpttext.cc4
-rw-r--r--support.cc2
3 files changed, 4 insertions, 4 deletions
diff --git a/gptpart.cc b/gptpart.cc
index d780ec1..17d6f15 100644
--- a/gptpart.cc
+++ b/gptpart.cc
@@ -302,7 +302,7 @@ void GPTPart::ShowSummary(int partNum, uint32_t blockSize) {
cout << firstLBA << " ";
cout.width(14);
cout << lastLBA << " ";
- cout << BytesToIeee(lastLBA - firstLBA + 1, blockSize) << " ";
+ cout << sizeInIeee << " ";
if (sizeInIeee.length() < 10)
for (i = 0; i < 10 - sizeInIeee.length(); i++)
cout << " ";
diff --git a/gpttext.cc b/gpttext.cc
index 15fba7b..718b99b 100644
--- a/gpttext.cc
+++ b/gpttext.cc
@@ -198,9 +198,9 @@ void GPTDataTextUI::CreatePartition(void) {
Align(&firstInLargest);
// Get partition number....
+ prompt1 << "Partition number (" << firstFreePart + 1 << "-" << numParts
+ << ", default " << firstFreePart + 1 << "): ";
do {
- prompt1 << "Partition number (" << firstFreePart + 1 << "-" << numParts
- << ", default " << firstFreePart + 1 << "): ";
partNum = GetNumber(firstFreePart + 1, numParts,
firstFreePart + 1, prompt1.str()) - 1;
if (partitions[partNum].GetFirstLBA() != 0)
diff --git a/support.cc b/support.cc
index ef53444..2dc9a8a 100644
--- a/support.cc
+++ b/support.cc
@@ -138,7 +138,7 @@ uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high,
if (sSize == 0) {
sSize = SECTOR_SIZE;
- cerr << "Bug: Sector size invalid in SIToInt()!\n";
+ cerr << "Bug: Sector size invalid in IeeeToInt()!\n";
} // if
// Remove leading spaces, if present