Skip to content

Commit

Permalink
Remove gccgo special cases
Browse files Browse the repository at this point in the history
This was fixed in a different way in 4d0e916.
  • Loading branch information
tamird committed Feb 2, 2018
1 parent 738e088 commit 83a859a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server_statvfs_impl.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build darwin linux,!gccgo
// +build darwin linux

// fill in statvfs structure with OS specific values
// Statfs_t is different per-kernel, and only exists on some unixes (not Solaris for instance)
Expand Down
2 changes: 1 addition & 1 deletion server_statvfs_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !gccgo,linux
// +build linux

package sftp

Expand Down
2 changes: 1 addition & 1 deletion server_statvfs_stubs.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !darwin,!linux gccgo
// +build !darwin,!linux

package sftp

Expand Down

0 comments on commit 83a859a

Please sign in to comment.