commit | 567ff2f6143ecb993dbedede402a43feb71c420a | [log] [tgz] |
---|---|---|
author | tfarina <tfarina@chromium.org> | Mon Apr 27 07:01:44 2015 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Mon Apr 27 07:01:45 2015 -0700 |
tree | b8bc1ea5fc362da369ba1868d4dca0312ec0a192 | |
parent | 275231474528cbe42cb49b7e649fbbd6b92890af [diff] [blame] |
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
diff --git a/src/images/SkImageDecoder_wbmp.cpp b/src/images/SkImageDecoder_wbmp.cpp index d6d4f82..b7a6790 100644 --- a/src/images/SkImageDecoder_wbmp.cpp +++ b/src/images/SkImageDecoder_wbmp.cpp
@@ -93,7 +93,7 @@ if (bits > 0) { unsigned mask = *src; do { - *dst++ = (mask >> 7) & 1;; + *dst++ = (mask >> 7) & 1; mask <<= 1; } while (--bits != 0); }