diff options
-rw-r--r-- | llvm/lib/Support/Windows/Signals.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Windows/Signals.inc b/llvm/lib/Support/Windows/Signals.inc index 8d0b33c0838..f40ca72996a 100644 --- a/llvm/lib/Support/Windows/Signals.inc +++ b/llvm/lib/Support/Windows/Signals.inc @@ -217,7 +217,7 @@ static bool printStackTraceWithLLVMSymbolizer(llvm::raw_ostream &OS, Context.ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER; static void *StackTrace[256]; - int Depth = 0; + size_t Depth = 0; while (fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame, &Context, 0, fSymFunctionTableAccess64, fSymGetModuleBase64, 0)) { |