Skip to content

Commit 819e744

Browse files
committed
sdfkdjghdfg
1 parent 6ee8686 commit 819e744

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/directfile/file_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func OpenFileWithODirect(path string, blockSize uint32) (*DirectFile, error) {
2828
return &DirectFile{file: file, blockSize: blockSize, Direct: true}, nil
2929
}
3030

31-
// OpenFileFADV_DONTNEED opens file with FADV_DONTNEED
31+
// OpenFileFADVDONTNEED opens file with FADV_DONTNEED
3232
func OpenFileFADVDONTNEED(path string) (*os.File, error) {
3333
// Open the file
3434
file, err := os.Open(path)

pkg/directfile/file_nodirect.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func OpenFileWithODirect(path string, blockSize uint32) (*DirectFile, error) {
1212
return openNodirect(path)
1313
}
1414

15-
// OpenFileFADV_DONTNEED opens file with FADV_DONTNEED
15+
// OpenFileFADVDONTNEED opens file with FADV_DONTNEED
1616
func OpenFileFADVDONTNEED(path string) (*os.File, error) {
1717
return os.Open(path)
1818
}

0 commit comments

Comments
 (0)