diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-03-27 09:44:01 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-03-27 09:44:01 +0100 |
| commit | 4e668495fb96931c819602a190c4301ae3f9956e (patch) | |
| tree | 05faff7528d974f4f17e2d4850828b142e34fabd | |
| parent | 1174f0c1ec0c56cd0ce0bc746ce96777c0d22c14 (diff) | |
sys/syz-extract: fix too long line
| -rw-r--r-- | sys/syz-extract/fuchsia.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/syz-extract/fuchsia.go b/sys/syz-extract/fuchsia.go index 83f6703e4..2784a1b11 100644 --- a/sys/syz-extract/fuchsia.go +++ b/sys/syz-extract/fuchsia.go @@ -27,7 +27,8 @@ func (*fuchsia) processFile(arch *Arch, info *compiler.ConstInfo) (map[string]ui dir := arch.sourceDir headerArch := arch.target.KernelHeaderArch cc := filepath.Join(dir, "buildtools", "linux-x64", "clang", "bin", "clang") - includeDir := filepath.Join(dir, "out", headerArch, "sdk", "exported", "zircon_sysroot", "arch", headerArch, "sysroot", "include") + includeDir := filepath.Join(dir, "out", headerArch, "sdk", "exported", + "zircon_sysroot", "arch", headerArch, "sysroot", "include") args := []string{"-fmessage-length=0", "-I" + includeDir} fidlingDir := filepath.Join(dir, "out", headerArch, "fidling", "gen") args = append(args, "-I"+fidlingDir) |
