diff options
| author | Tobias Klauser <tklauser@distanz.ch> | 2018-04-19 12:12:51 +0200 |
|---|---|---|
| committer | Tobias Klauser <tobias.klauser@gmail.com> | 2018-04-19 10:40:15 +0000 |
| commit | d5a52e704490264a5dabb9c2f944bb67cd879db0 (patch) | |
| tree | b8b69276ceb3d7fcbdafa54906866b402ddfa575 /src/internal/syscall/windows | |
| parent | c23afa9ddb1180b929ba09a7d96710677a2a4b45 (diff) | |
| download | go-d5a52e704490264a5dabb9c2f944bb67cd879db0.tar.xz | |
internal/syscall/windows: convert CRLF line endings
CL 99337 introduced a file with CRLF line endings. Convert them to LF
line endings as in all other Go files.
Change-Id: I68b28fd443f05bebbbd9280d1821c4ccd33a4a8a
Reviewed-on: https://go-review.googlesource.com/108075
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
Diffstat (limited to 'src/internal/syscall/windows')
| -rw-r--r-- | src/internal/syscall/windows/symlink_windows.go | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/internal/syscall/windows/symlink_windows.go b/src/internal/syscall/windows/symlink_windows.go index f2bcd4c4d0..cc2163e933 100644 --- a/src/internal/syscall/windows/symlink_windows.go +++ b/src/internal/syscall/windows/symlink_windows.go @@ -1,14 +1,14 @@ -// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package windows
-
-import "syscall"
-
-const (
- ERROR_INVALID_PARAMETER syscall.Errno = 87
-
- // symlink support for CreateSymbolicLink() starting with Windows 10 (1703, v10.0.14972)
- SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE = 0x2
-)
+// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package windows + +import "syscall" + +const ( + ERROR_INVALID_PARAMETER syscall.Errno = 87 + + // symlink support for CreateSymbolicLink() starting with Windows 10 (1703, v10.0.14972) + SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE = 0x2 +) |
