Remove unused variables.
diff --git a/md5crypt.c b/md5crypt.c
index 22ef989..5625fd3 100644
--- a/md5crypt.c
+++ b/md5crypt.c
@@ -50,7 +50,7 @@
 char *
 md5_crypt(const char *pw, const char *salt)
 {
-	static char passwd[120], salt_copy[9], *p;
+	static char passwd[120], salt_copy[9];
 	static const char *sp, *ep;
 	unsigned char final[16];
 	int sl, pl, i, j;