mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
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:
parent
c0bad5706e
commit
ab4d9b0446
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user