Make sure IdentifyFileType is in the sys namespace.

llvm-svn: 17806
diff --git a/llvm/lib/System/Path.cpp b/llvm/lib/System/Path.cpp
index a530f28..1504f0d 100644
--- a/llvm/lib/System/Path.cpp
+++ b/llvm/lib/System/Path.cpp
@@ -23,7 +23,7 @@
 //===----------------------------------------------------------------------===//
 
 LLVMFileType 
-IdentifyFileType(const char*magic, unsigned length) {
+sys::IdentifyFileType(const char*magic, unsigned length) {
   assert(magic && "Invalid magic number string");
   assert(length >=4 && "Invalid magic number length");
   switch (magic[0]) {