projects
/
platform
/
upstream
/
libSkiaSharp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68c14d9
)
Don't convert DWORD to int.
author
bungeman
<bungeman@google.com>
Sat, 19 Mar 2016 22:51:05 +0000
(15:51 -0700)
committer
Commit bot
<commit-bot@chromium.org>
Sat, 19 Mar 2016 22:51:05 +0000
(15:51 -0700)
DWORD is unsigned, and might not be an int. vs2015u2 complains.
BUG=skia:4553
TBR=mtklein
This is pretty trivial and makes the vs2015 bot compile.
Review URL: https://codereview.chromium.org/
1818713002
tools/CrashHandler.cpp
patch
|
blob
|
history
diff --git
a/tools/CrashHandler.cpp
b/tools/CrashHandler.cpp
index 6707b65de44de21f89ecfaf45a5153f6163e5bde..542811674121ea552e5a12aa8b8e5bd01abc7c90 100644
(file)
--- a/
tools/CrashHandler.cpp
+++ b/
tools/CrashHandler.cpp
@@
-101,7
+101,7
@@
static const struct {
const char* name;
-
int
code;
+
const DWORD
code;
} kExceptions[] = {
#define _(E) {#E, E}
_(EXCEPTION_ACCESS_VIOLATION),