aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Path.cpp
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2011-12-13 23:16:15 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2011-12-13 23:16:15 +0000
commit7dfbeda68efc9cd4b0be4551894dbe2233157db4 (patch)
tree8e03268cde79d23ab1cae7dbda512684b4a65376 /llvm/lib/Support/Path.cpp
parent485e5622f4b64e30382d456bf77b2b8fb4d92da1 (diff)
downloadllvm-7dfbeda68efc9cd4b0be4551894dbe2233157db4.zip
llvm-7dfbeda68efc9cd4b0be4551894dbe2233157db4.tar.gz
llvm-7dfbeda68efc9cd4b0be4551894dbe2233157db4.tar.bz2
Cleanup whitespace.
llvm-svn: 146521
Diffstat (limited to 'llvm/lib/Support/Path.cpp')
-rw-r--r--llvm/lib/Support/Path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Path.cpp b/llvm/lib/Support/Path.cpp
index a4d49dc..9d8decc 100644
--- a/llvm/lib/Support/Path.cpp
+++ b/llvm/lib/Support/Path.cpp
@@ -90,7 +90,7 @@ sys::IdentifyFileType(const char *magic, unsigned length) {
case 0xCF: {
uint16_t type = 0;
if (magic[0] == char(0xFE) && magic[1] == char(0xED) &&
- magic[2] == char(0xFA) &&
+ magic[2] == char(0xFA) &&
(magic[3] == char(0xCE) || magic[3] == char(0xCF))) {
/* Native endian */
if (length >= 16) type = magic[14] << 8 | magic[15];