summaryrefslogtreecommitdiffstats
path: root/sandbox/win
diff options
context:
space:
mode:
authortapted <tapted@chromium.org>2016-01-04 02:35:09 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-04 10:36:19 +0000
commit5364cc029e0a86bd3303a56d069fa8ee9d2235e1 (patch)
tree562f4ea43dabe5a111787626ab3b69f816035865 /sandbox/win
parent8e9da48fa5086b27e076b21f729254cc8451c923 (diff)
downloadchromium_src-5364cc029e0a86bd3303a56d069fa8ee9d2235e1.zip
chromium_src-5364cc029e0a86bd3303a56d069fa8ee9d2235e1.tar.gz
chromium_src-5364cc029e0a86bd3303a56d069fa8ee9d2235e1.tar.bz2
Fix include presubmit warning in Wow64.cc
Changes to Wow64.cc currently trigger: ** Presubmit Warnings ** Your #include order seems to be broken /* snip */ sandbox/win/src/Wow64.cc:11: - line belongs before previous line This is because the #include line for its corresponding header is spelled with a lowercase "w" in "wow64.h". Changing the #include to Wow64.h is the correct fix. Since the files themselves do not require renaming this shouldn't cause any case sensitivity filesystem confusion on the bots (I hope). BUG=None Review URL: https://codereview.chromium.org/1556873003 Cr-Commit-Position: refs/heads/master@{#367301}
Diffstat (limited to 'sandbox/win')
-rw-r--r--sandbox/win/src/Wow64.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/win/src/Wow64.cc b/sandbox/win/src/Wow64.cc
index 306b9c1..d07d72f 100644
--- a/sandbox/win/src/Wow64.cc
+++ b/sandbox/win/src/Wow64.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "sandbox/win/src/wow64.h"
+#include "sandbox/win/src/Wow64.h"
#include <stddef.h>