folly/io/Compression.cpp: avoid shadowing warnings for "rc"
authorJim Meyering <meyering@fb.com>
Tue, 4 Oct 2016 16:11:08 +0000 (09:11 -0700)
committerFacebook Github Bot <facebook-github-bot-bot@fb.com>
Tue, 4 Oct 2016 16:23:36 +0000 (09:23 -0700)
commite7256a8a282c258dee2e62055ac227761df5e22d
tree0312621890e98ef2bf6278e804c4ffb108515b34
parent2ff9d1814ee6477181ae333f6a926f290a8c5a96
folly/io/Compression.cpp: avoid shadowing warnings for "rc"

Summary:
gcc's -Wshadow (and the under-review -Wshadow-local) would evoke this:
```
folly/io/Compression.cpp:650:9: error: declaration of 'rc' shadows a previous local [-Werror=shadow-compatible-local]
folly/io/Compression.cpp:637:7: error: shadowed declaration is here [-Werror=shadow-compatible-local]
folly/io/Compression.cpp:566:9: error: declaration of 'rc' shadows a previous local [-Werror=shadow-compatible-local]
folly/io/Compression.cpp:548:7: error: shadowed declaration is here [-Werror=shadow-compatible-local]
```
In each case, I removed the "int" from the latter declaration.

Reviewed By: philippv

Differential Revision: D3966308

fbshipit-source-id: 584cb9ffe8ba0e56914223c440efabe9e0de6b17
folly/io/Compression.cpp