Commit 551cf701 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msvcp90: Turn two static variables into constants.

parent eda3a3e3
...@@ -112,7 +112,7 @@ static const char str_ETIMEDOUT[] = "connection timed out"; ...@@ -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 { ...@@ -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[] =
......
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