mirror of https://github.com/xemu-project/xemu.git
qga: use more idiomatic qemu-style eol operators
Reported-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
This commit is contained in:
parent
a7a173624e
commit
02506e2d54
|
@ -1305,9 +1305,9 @@ get_net_error_message(gint error)
|
||||||
wchar_t *msg = NULL;
|
wchar_t *msg = NULL;
|
||||||
int flags, nchars;
|
int flags, nchars;
|
||||||
|
|
||||||
flags = FORMAT_MESSAGE_ALLOCATE_BUFFER
|
flags = FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
||||||
|FORMAT_MESSAGE_IGNORE_INSERTS
|
FORMAT_MESSAGE_IGNORE_INSERTS |
|
||||||
|FORMAT_MESSAGE_FROM_SYSTEM;
|
FORMAT_MESSAGE_FROM_SYSTEM;
|
||||||
|
|
||||||
if (error >= NERR_BASE && error <= MAX_NERR) {
|
if (error >= NERR_BASE && error <= MAX_NERR) {
|
||||||
module = LoadLibraryExW(L"netmsg.dll", NULL, LOAD_LIBRARY_AS_DATAFILE);
|
module = LoadLibraryExW(L"netmsg.dll", NULL, LOAD_LIBRARY_AS_DATAFILE);
|
||||||
|
|
Loading…
Reference in New Issue