Squelch a warning about signed/unsigned.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28729 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-06-08 18:08:43 +00:00
parent c0bad5706e
commit ab4d9b0446

View File

@ -121,7 +121,7 @@ Path::GetTemporaryDirectory() {
// Append a subdirectory passed on our process id so multiple LLVMs don't
// step on each other's toes.
sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
result.appendComponent(pathname);
// If there's a directory left over from a previous LLVM execution that