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:
parent
eda3a3e37d
commit
551cf701aa
|
@ -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[] =
|
||||||
|
|
Loading…
Reference in New Issue