go.image/tiff: remove unreachable code.

This makes "go vet code.google.com/p/go.image/..." happy.

LGTM=dsymonds
R=dsymonds
CC=golang-codereviews
https://golang.org/cl/103630047
diff --git a/tiff/compress.go b/tiff/compress.go
index 40c7fd8..3f176f0 100644
--- a/tiff/compress.go
+++ b/tiff/compress.go
@@ -55,5 +55,4 @@
 			dst = append(dst, buf[:1-code]...)
 		}
 	}
-	panic("unreachable")
 }