crypto/ssh: fix format string error in test.

Change-Id: I0c84f11fb74ee478617deb1b743a759c9f789101
Reviewed-on: https://go-review.googlesource.com/10822
Reviewed-by: Adam Langley <agl@golang.org>
diff --git a/ssh/cipher_test.go b/ssh/cipher_test.go
index d67a93a..54b92b6 100644
--- a/ssh/cipher_test.go
+++ b/ssh/cipher_test.go
@@ -120,7 +120,7 @@
 		}
 
 		if i > 0 && bytesRead != lastRead {
-			t.Errorf("corrupt byte %d: want %d, got %d bytes read", bytesRead, lastRead)
+			t.Errorf("corrupt byte %d: read %d bytes, want %d bytes read", i, bytesRead, lastRead)
 		}
 		lastRead = bytesRead
 	}