summaryrefslogtreecommitdiff
path: root/qga
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-02-17 17:47:51 +0100
committerMichael Roth <mdroth@linux.vnet.ibm.com>2016-02-25 09:48:51 -0600
commit02506e2d545d2f931442c910ab46be2cb6d9f788 (patch)
treebb519e68ca043c39a11852c973ddc2abd200619b /qga
parenta7a173624e66785c6364e9f2f3ae0e7bea44bcb4 (diff)
downloadqemu-02506e2d545d2f931442c910ab46be2cb6d9f788.tar.gz
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>
Diffstat (limited to 'qga')
-rw-r--r--qga/commands-win32.c6
1 files changed, 3 insertions, 3 deletions
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);