0

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}
This commit is contained in:
tapted
2016-01-04 02:35:09 -08:00
committed by Commit bot
parent 8e9da48fa5
commit 5364cc029e

@ -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>