diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-02-17 17:47:51 +0100 |
---|---|---|
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | 2016-02-25 09:48:51 -0600 |
commit | 02506e2d545d2f931442c910ab46be2cb6d9f788 (patch) | |
tree | bb519e68ca043c39a11852c973ddc2abd200619b | |
parent | a7a173624e66785c6364e9f2f3ae0e7bea44bcb4 (diff) | |
download | qemu-02506e2d545d2f931442c910ab46be2cb6d9f788.zip qemu-02506e2d545d2f931442c910ab46be2cb6d9f788.tar.gz qemu-02506e2d545d2f931442c910ab46be2cb6d9f788.tar.bz2 |
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>
-rw-r--r-- | qga/commands-win32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qga/commands-win32.c b/qga/commands-win32.c index 5ef460f..4e3e147 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); |