aboutsummaryrefslogtreecommitdiff
path: root/hash.go
diff options
context:
space:
mode:
Diffstat (limited to 'hash.go')
-rw-r--r--hash.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.go b/hash.go
index 068eb840..3edb6079 100644
--- a/hash.go
+++ b/hash.go
@@ -10,8 +10,8 @@ const maxHashSize = 32
// Hash represents a Git object ID.
type Hash struct {
- data [maxHashSize]byte
size int
+ data [maxHashSize]byte
}
// hashFunc is a function that computes a hash from input data.