Fix typo in conditional.
diff --git a/Python/random.c b/Python/random.c
index 327166e..01cd83a 100644
--- a/Python/random.c
+++ b/Python/random.c
@@ -269,7 +269,7 @@
     */
 
     env = Py_GETENV("PYTHONHASHSEED");
-    if (env && *env != '\0' & strcmp(env, "random") != 0) {
+    if (env && *env != '\0' && strcmp(env, "random") != 0) {
         char *endptr = env;
         unsigned long seed;
         seed = strtoul(env, &endptr, 10);