Commit 919169e1 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix warning

parent 6d49ef49
...@@ -2068,7 +2068,7 @@ uint get_sql_xid(XID *xid, char *buf) ...@@ -2068,7 +2068,7 @@ uint get_sql_xid(XID *xid, char *buf)
MY_INT64_NUM_DECIMAL_DIGITS, -10, xid->formatID); MY_INT64_NUM_DECIMAL_DIGITS, -10, xid->formatID);
} }
return buf - orig_buf; return (uint)(buf - orig_buf);
} }
......
...@@ -257,4 +257,9 @@ function addToResponseFile(filename, responseFile) ...@@ -257,4 +257,9 @@ function addToResponseFile(filename, responseFile)
responseFile.WriteLine("\""+fso.GetFile(filename).Path+"\""); responseFile.WriteLine("\""+fso.GetFile(filename).Path+"\"");
} }
} }
else
{
echo("file " + filename + " not found. Can't generate symbols file");
WScript.Quit (1);
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment