Commit 923cd7b1 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Run gofmt.

parent b1aee138
package fuse
import (
"path"
"bytes"
"fmt"
"os"
"os/exec"
"path"
"path/filepath"
"syscall"
"unsafe"
......
package nodefs
import (
"unsafe"
"syscall"
"unsafe"
)
// futimens - futimens(3) calls utimensat(2) with "pathname" set to null and
......
......@@ -117,7 +117,6 @@ func sysSetxattr(path string, attr string, val []byte, flag int) error {
return syscall.Setxattr(path, attr, val, flag)
}
const _AT_SYMLINK_NOFOLLOW = 0x100
// Linux kernel syscall utimensat(2)
......
package pathfs
import (
"reflect"
"os"
"testing"
"reflect"
"syscall"
"testing"
)
func TestSysUtimensat(t *testing.T) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment