Bug 1368416 Include 'windows.h' instead of 'Windows.h' for MinGW support draft
authorTom Ritter <tom@mozilla.com>
Mon, 29 May 2017 00:49:29 -0500
changeset 585858 2a4ac0844bb82982ab0a9a9a8e7df489568ead90
parent 585803 4541134e973a6bd5e667a603e844854c8e5361da
child 630815 8d475ac975e34e4676c05abe912c8a9e4c30c778
push id61211
push userbmo:tom@mozilla.com
push dateMon, 29 May 2017 05:50:50 +0000
bugs1368416
milestone55.0a1
Bug 1368416 Include 'windows.h' instead of 'Windows.h' for MinGW support MozReview-Commit-ID: AmuNxWpQgKC
netwerk/test/TestNamedPipeService.cpp
--- a/netwerk/test/TestNamedPipeService.cpp
+++ b/netwerk/test/TestNamedPipeService.cpp
@@ -1,17 +1,17 @@
 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 #include "TestCommon.h"
 #include "gtest/gtest.h"
 
-#include <Windows.h>
+#include <windows.h>
 
 #include "mozilla/Atomics.h"
 #include "mozilla/Monitor.h"
 #include "nsINamedPipeService.h"
 #include "nsNetCID.h"
 
 #define PIPE_NAME "\\\\.\\pipe\\TestNPS"
 #define TEST_STR "Hello World"