aboutsummaryrefslogtreecommitdiff
path: root/go/storage
diff options
context:
space:
mode:
Diffstat (limited to 'go/storage')
-rw-r--r--go/storage/crc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/storage/crc.go b/go/storage/crc.go
index 41f7f6d00..43e65757a 100644
--- a/go/storage/crc.go
+++ b/go/storage/crc.go
@@ -25,5 +25,5 @@ func (c CRC) Value() uint32 {
func (n *Needle) Etag() string {
bits := make([]byte, 4)
util.Uint32toBytes(bits, uint32(n.Checksum))
- return fmt.Sprintf("%x", bits)
+ return fmt.Sprintf("\"%x\"", bits)
}