summaryrefslogtreecommitdiff
path: root/dexdump/dexdump_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dexdump/dexdump_main.cc')
-rw-r--r--dexdump/dexdump_main.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dexdump/dexdump_main.cc b/dexdump/dexdump_main.cc
index 756f8793c9..9be0922877 100644
--- a/dexdump/dexdump_main.cc
+++ b/dexdump/dexdump_main.cc
@@ -108,8 +108,8 @@ int dexdumpDriver(int argc, char** argv) {
default:
wantUsage = true;
break;
- }
- }
+ } // switch
+ } // while
// Detect early problems.
if (optind == argc) {
@@ -138,7 +138,7 @@ int dexdumpDriver(int argc, char** argv) {
int result = 0;
while (optind < argc) {
result |= processFile(argv[optind++]);
- }
+ } // while
return result != 0;
}