From 4ab57e0097b9b1fcdea7a49a01ff3d9ad993dfee Mon Sep 17 00:00:00 2001 From: bungeman Date: Sat, 19 Mar 2016 15:51:05 -0700 Subject: Don't convert DWORD to int. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/CrashHandler.cpp') diff --git a/tools/CrashHandler.cpp b/tools/CrashHandler.cpp index 6707b65de4..5428116741 100644 --- 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), -- cgit v1.2.3