Fix MSVC 2015 compiler complaint

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
diff --git a/dm/DM.cpp b/dm/DM.cpp
index 0190262..2eb5593 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -138,7 +138,7 @@
     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),