]> Cypherpunks repositories - gostls13.git/commitdiff
internal/syscall/windows: convert CRLF line endings
authorTobias Klauser <tklauser@distanz.ch>
Thu, 19 Apr 2018 10:12:51 +0000 (12:12 +0200)
committerTobias Klauser <tobias.klauser@gmail.com>
Thu, 19 Apr 2018 10:40:15 +0000 (10:40 +0000)
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>
src/internal/syscall/windows/symlink_windows.go

index f2bcd4c4d0cf2ca79c8023b98738c41f2d3bf5a3..cc2163e93347dddfd7d573a8611af0ea4fceb27f 100644 (file)
@@ -1,14 +1,14 @@
-// Copyright 2018 The Go Authors. All rights reserved.\r
-// Use of this source code is governed by a BSD-style\r
-// license that can be found in the LICENSE file.\r
-\r
-package windows\r
-\r
-import "syscall"\r
-\r
-const (\r
-       ERROR_INVALID_PARAMETER syscall.Errno = 87\r
-\r
-       // symlink support for CreateSymbolicLink() starting with Windows 10 (1703, v10.0.14972)\r
-       SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE = 0x2\r
-)\r
+// 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
+)