]> granicus.if.org Git - python/commitdiff
Fix typo in conditional.
authorGeorg Brandl <georg@python.org>
Mon, 20 Feb 2012 22:49:29 +0000 (23:49 +0100)
committerGeorg Brandl <georg@python.org>
Mon, 20 Feb 2012 22:49:29 +0000 (23:49 +0100)
Python/random.c

index 327166e26aa7ec122e383fe55cbafc1c2e47d79b..01cd83aa564cc8a2f91cc34bfb1ca1e1c65f1bf3 100644 (file)
@@ -269,7 +269,7 @@ _PyRandom_Init(void)
     */
 
     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);