From: Reid Spencer Date: Thu, 8 Jun 2006 18:08:43 +0000 (+0000) Subject: Squelch a warning about signed/unsigned. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ab4d9b044659481351f3b17d70429230b8c3ff17;p=oota-llvm.git Squelch a warning about signed/unsigned. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28729 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 4aab2765488..f33654ec8fc 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -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