Commit 133852b3 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

drop blanks.

parent b87b9b17
...@@ -100,7 +100,6 @@ func zipFilesToTree(files []*zip.File) *ZipDirTree { ...@@ -100,7 +100,6 @@ func zipFilesToTree(files []*zip.File) *ZipDirTree {
return t return t
} }
func NewZipArchiveFileSystem(name string) *ZipFileFuse { func NewZipArchiveFileSystem(name string) *ZipFileFuse {
z := new(ZipFileFuse) z := new(ZipFileFuse)
r, err := zip.OpenReader(name) r, err := zip.OpenReader(name)
...@@ -115,7 +114,6 @@ func NewZipArchiveFileSystem(name string) *ZipFileFuse { ...@@ -115,7 +114,6 @@ func NewZipArchiveFileSystem(name string) *ZipFileFuse {
return z return z
} }
const zip_DIRMODE uint32 = fuse.S_IFDIR | 0700 const zip_DIRMODE uint32 = fuse.S_IFDIR | 0700
const zip_FILEMODE uint32 = fuse.S_IFREG | 0600 const zip_FILEMODE uint32 = fuse.S_IFREG | 0600
......
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