Fix MSVC 2015 compiler complaint
authorrobertphillips <robertphillips@google.com>
Tue, 1 Mar 2016 22:10:23 +0000 (14:10 -0800)
committerCommit bot <commit-bot@chromium.org>
Tue, 1 Mar 2016 22:10:23 +0000 (14:10 -0800)
This is/was slowly, but surely, driving me insane:

DM.cpp(150): warning C4838: conversion from 'DWORD' to 'int' requires a narrowing conversion

GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1749363002

Review URL: https://codereview.chromium.org/1749363002

dm/DM.cpp

index 0190262..2eb5593 100644 (file)
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -138,7 +138,7 @@ static std::atomic<bool> in_signal_handler{false};
     static LONG WINAPI handler(EXCEPTION_POINTERS* e) {
         static const struct {
             const char* name;
-            int code;
+            DWORD code;
         } kExceptions[] = {
         #define _(E) {#E, E}
             _(EXCEPTION_ACCESS_VIOLATION),