summaryrefslogtreecommitdiff
path: root/src/lib/hash/crc32.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/hash/crc32.go')
-rw-r--r--src/lib/hash/crc32.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hash/crc32.go b/src/lib/hash/crc32.go
index eb1dff3ba..57fa6af81 100644
--- a/src/lib/hash/crc32.go
+++ b/src/lib/hash/crc32.go
@@ -69,7 +69,7 @@ func NewIEEEDigest() *Digest {
// Write updates the Digest with the incremental checksum generated by p.
// It returns the number of bytes written; err is always nil.
-func (d *Digest) Write(p []byte) (n int, err *os.Error) {
+func (d *Digest) Write(p []byte) (n int, err os.Error) {
crc := d.crc ^ 0xFFFFFFFF;
tab := d.tab;
for i := 0; i < len(p); i++ {