From: Marc-André Lureau Date: Wed, 17 Feb 2016 16:47:51 +0000 (+0100) Subject: qga: use more idiomatic qemu-style eol operators X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=02506e2d545d2f931442c910ab46be2cb6d9f788;p=qemu.git qga: use more idiomatic qemu-style eol operators Reported-by: Laszlo Ersek Signed-off-by: Marc-André Lureau Reviewed-by: Laszlo Ersek Reviewed-by: Michael Roth Signed-off-by: Michael Roth --- diff --git a/qga/commands-win32.c b/qga/commands-win32.c index 5ef460f433..4e3e14741b 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -1305,9 +1305,9 @@ get_net_error_message(gint error) wchar_t *msg = NULL; int flags, nchars; - flags = FORMAT_MESSAGE_ALLOCATE_BUFFER - |FORMAT_MESSAGE_IGNORE_INSERTS - |FORMAT_MESSAGE_FROM_SYSTEM; + flags = FORMAT_MESSAGE_ALLOCATE_BUFFER | + FORMAT_MESSAGE_IGNORE_INSERTS | + FORMAT_MESSAGE_FROM_SYSTEM; if (error >= NERR_BASE && error <= MAX_NERR) { module = LoadLibraryExW(L"netmsg.dll", NULL, LOAD_LIBRARY_AS_DATAFILE);