From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57190) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aW5Gi-00022F-R6 for qemu-devel@nongnu.org; Wed, 17 Feb 2016 11:48:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aW5Gg-0003rm-Te for qemu-devel@nongnu.org; Wed, 17 Feb 2016 11:48:00 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44539) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aW5Gg-0003rh-OA for qemu-devel@nongnu.org; Wed, 17 Feb 2016 11:47:58 -0500 From: marcandre.lureau@redhat.com Date: Wed, 17 Feb 2016 17:47:51 +0100 Message-Id: <1455727675-20625-2-git-send-email-marcandre.lureau@redhat.com> In-Reply-To: <1455727675-20625-1-git-send-email-marcandre.lureau@redhat.com> References: <1455727675-20625-1-git-send-email-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 1/5] qga: use more idiomatic qemu-style eol operators List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , lersek@redhat.com, mdroth@linux.vnet.ibm.com From: Marc-Andr=C3=A9 Lureau Reported-by: Laszlo Ersek Signed-off-by: Marc-Andr=C3=A9 Lureau --- qga/commands-win32.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qga/commands-win32.c b/qga/commands-win32.c index cf0757c..7baacc7 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -1248,9 +1248,9 @@ get_net_error_message(gint error) wchar_t *msg =3D NULL; int flags, nchars; =20 - flags =3D FORMAT_MESSAGE_ALLOCATE_BUFFER - |FORMAT_MESSAGE_IGNORE_INSERTS - |FORMAT_MESSAGE_FROM_SYSTEM; + flags =3D FORMAT_MESSAGE_ALLOCATE_BUFFER | + FORMAT_MESSAGE_IGNORE_INSERTS | + FORMAT_MESSAGE_FROM_SYSTEM; =20 if (error >=3D NERR_BASE && error <=3D MAX_NERR) { module =3D LoadLibraryExW(L"netmsg.dll", NULL, LOAD_LIBRARY_AS_D= ATAFILE); --=20 2.5.0