mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
fix: linter errors in Windows specific code (#18276)
This commit is contained in:
@@ -63,6 +63,6 @@ func DisableDirectIO(f *os.File) error {
|
||||
|
||||
// AlignedBlock simply returns an unaligned buffer
|
||||
// for systems that do not support DirectIO.
|
||||
func AlignedBlock(BlockSize int) []byte {
|
||||
return make([]byte, BlockSize)
|
||||
func AlignedBlock(blockSize int) []byte {
|
||||
return make([]byte, blockSize)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user