aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/imgslice.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-03-29 09:03:52 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-29 09:03:53 -0700
commit9d524f22bfde5dc3dc8f48e1be39bdebd3bb0304 (patch)
treefc75ea6f8bc83b552d9ac9c9b4ac0d5a967ee5ac /tools/imgslice.cpp
parente577693b3be06d90c824538e7eac0b25b0e02a99 (diff)
Style bikeshed - remove extraneous whitespace
Diffstat (limited to 'tools/imgslice.cpp')
-rw-r--r--tools/imgslice.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/imgslice.cpp b/tools/imgslice.cpp
index 3585c06352..2fdc819aa9 100644
--- a/tools/imgslice.cpp
+++ b/tools/imgslice.cpp
@@ -42,21 +42,21 @@ int tool_main(int argc, char** argv) {
SkDebugf("Channel (--rgb) must be between 0 and 3 (inclusive) - value is %d.\n",
FLAGS_rgb);
}
- return kError;
+ return kError;
}
if (FLAGS_row >= 0 && FLAGS_column >= 0) {
if (!FLAGS_quiet) {
SkDebugf("Only one of '-c' or '-r' can be specified at at time.\n");
}
- return kError;
+ return kError;
}
if (FLAGS_row < 0 && FLAGS_column < 0) {
if (!FLAGS_quiet) {
SkDebugf("At least one of '-c' or '-r' need to be specified.\n");
}
- return kError;
+ return kError;
}
sk_sp<SkData> data(SkData::MakeFromFileName(FLAGS_image[0]));
@@ -128,7 +128,7 @@ int tool_main(int argc, char** argv) {
SkDebugf(", %d", ((c) >> (FLAGS_rgb*8)) & 0xFF);
}
- }
+ }
}
SkDebugf("\n");