Code cleanup.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211697 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Logan Chien 2014-06-25 13:46:17 +00:00
parent f6a9418651
commit 3c26b95512

View File

@ -927,7 +927,7 @@ void directory_entry::replace_filename(const Twine &filename, file_status st) {
}
/// @brief Identify the magic in magic.
file_magic identify_magic(StringRef Magic) {
file_magic identify_magic(StringRef Magic) {
if (Magic.size() < 4)
return file_magic::unknown;
switch ((unsigned char)Magic[0]) {