diff options
| author | Thomas Tanner <trtanner@btinternet.com> | 2015-10-31 19:40:33 +0000 |
|---|---|---|
| committer | Thomas Tanner <trtanner@btinternet.com> | 2015-10-31 19:40:33 +0000 |
| commit | f1aaf92afb58e9fee330ede36b9775fe2a6e5a27 (patch) | |
| tree | cdb8415f7d0468c0589b252ccbde602627e20635 /src/shared | |
| parent | 8f64a1d13671dde96873c6245de850b133d7ad32 (diff) | |
Improve diagnostics if IWYU is enabled
Few small cleanups from clang
Diffstat (limited to 'src/shared')
| -rw-r--r-- | src/shared/stackdata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/stackdata.cpp b/src/shared/stackdata.cpp index 6c5a0968..18daaf7b 100644 --- a/src/shared/stackdata.cpp +++ b/src/shared/stackdata.cpp @@ -24,7 +24,7 @@ static void initDbgIfNecess() firstCall = false;
}
if (!::SymInitialize(process, NULL, TRUE)) {
- printf("failed to initialize symbols: %d", ::GetLastError());
+ printf("failed to initialize symbols: %lu", ::GetLastError());
}
initialized.insert(::GetCurrentProcessId());
}
|
