summaryrefslogtreecommitdiff
path: root/gdisk.cc
diff options
context:
space:
mode:
authorsrs5694 <srs5694@users.sourceforge.net>2010-01-26 16:00:26 -0500
committersrs5694 <srs5694@users.sourceforge.net>2010-01-26 16:00:26 -0500
commit546a9c7c369df465021feecb20f6a8f81b6df6bc (patch)
tree280a7cd1fda2a5614582f8675e415d4043fe5e93 /gdisk.cc
parentadd79a6e1b3a1af1305f02d51eb3aa148f580caa (diff)
downloadsgdisk-546a9c7c369df465021feecb20f6a8f81b6df6bc.tar.gz
New files to support disk I/O restructuring and (currently broken)
Windows version.
Diffstat (limited to 'gdisk.cc')
-rw-r--r--gdisk.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/gdisk.cc b/gdisk.cc
index ef3beb1..0809c3c 100644
--- a/gdisk.cc
+++ b/gdisk.cc
@@ -121,10 +121,7 @@ void MainMenu(char* filename, struct GPTData* theGPT) {
theGPT->ChangePartType();
break;
case 'v': case 'V':
- if (theGPT->Verify() > 0) { // problems found
- printf("You may be able to correct the problems by using options on the experts\n"
- "menu (press 'x' at the command prompt). Good luck!\n");
- } // if
+ theGPT->Verify();
break;
case 'w': case 'W':
if (theGPT->SaveGPTData() == 1)