aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/images
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2015-04-27 07:01:44 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-27 07:01:45 -0700
commit567ff2f6143ecb993dbedede402a43feb71c420a (patch)
treeb8bc1ea5fc362da369ba1868d4dca0312ec0a192 /src/images
parent275231474528cbe42cb49b7e649fbbd6b92890af (diff)
Cleanup: Remove unnecessary double-semicolons.
The entries were found by the following command line: $ find . -regex ".*\.[cChH]\(pp\)?" | xargs git grep -e ';;' --and --not -e 'for *(.*;;' Which is a combination of http://stackoverflow.com/a/3858879 and http://gitster.livejournal.com/27674.html BUG=None R=mtklein@google.com Review URL: https://codereview.chromium.org/1088763005
Diffstat (limited to 'src/images')
-rw-r--r--src/images/SkImageDecoder_wbmp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/images/SkImageDecoder_wbmp.cpp b/src/images/SkImageDecoder_wbmp.cpp
index d6d4f828e0..b7a6790ed8 100644
--- a/src/images/SkImageDecoder_wbmp.cpp
+++ b/src/images/SkImageDecoder_wbmp.cpp
@@ -93,7 +93,7 @@ static void expand_bits_to_bytes(uint8_t dst[], const uint8_t src[], int bits)
if (bits > 0) {
unsigned mask = *src;
do {
- *dst++ = (mask >> 7) & 1;;
+ *dst++ = (mask >> 7) & 1;
mask <<= 1;
} while (--bits != 0);
}