]> Git Repo - qemu.git/commitdiff
qga: use more idiomatic qemu-style eol operators
authorMarc-André Lureau <[email protected]>
Wed, 17 Feb 2016 16:47:51 +0000 (17:47 +0100)
committerMichael Roth <[email protected]>
Thu, 25 Feb 2016 15:48:51 +0000 (09:48 -0600)
Reported-by: Laszlo Ersek <[email protected]>
Signed-off-by: Marc-André Lureau <[email protected]>
Reviewed-by: Laszlo Ersek <[email protected]>
Reviewed-by: Michael Roth <[email protected]>
Signed-off-by: Michael Roth <[email protected]>
qga/commands-win32.c

index 5ef460f43339639e3913709cd0102c9362790aee..4e3e14741bd289fc630b8bd4b96fa28e383d2620 100644 (file)
@@ -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);
This page took 0.027341 seconds and 4 git commands to generate.