msvcp90: Turn two static variables into constants.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2018-12-03 21:42:55 -07:00 committed by Alexandre Julliard
parent eda3a3e37d
commit 551cf701aa
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ static const char str_ETIMEDOUT[] = "connection timed out";
static const char str_ETXTBSY[] = "text file busy"; static const char str_ETXTBSY[] = "text file busy";
static const char str_EWOULDBLOCK[] = "operation would block"; static const char str_EWOULDBLOCK[] = "operation would block";
static struct { static const struct {
int err; int err;
const char *str; const char *str;
} syserror_map[] = } syserror_map[] =
@ -199,7 +199,7 @@ static struct {
#endif #endif
#if _MSVCP_VER >= 140 #if _MSVCP_VER >= 140
static struct { static const struct {
int winerr; int winerr;
int doserr; int doserr;
} winerror_map[] = } winerror_map[] =