aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/filemode/filemode.go
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/filemode/filemode.go')
-rw-r--r--plumbing/filemode/filemode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/filemode/filemode.go b/plumbing/filemode/filemode.go
index 594984f..b848a97 100644
--- a/plumbing/filemode/filemode.go
+++ b/plumbing/filemode/filemode.go
@@ -118,7 +118,7 @@ func isSetSymLink(m os.FileMode) bool {
func (m FileMode) Bytes() []byte {
ret := make([]byte, 4)
binary.LittleEndian.PutUint32(ret, uint32(m))
- return ret[:]
+ return ret
}
// IsMalformed returns if the FileMode should not appear in a git packfile,