Commit 2c13d5c0 authored by Raymond Hettinger's avatar Raymond Hettinger

Removed unnecessary conditional (spotted by Neal Norwitz).

parent dee1d5e1
......@@ -882,7 +882,7 @@ r_object(RFILE *p)
break;
}
}
retval = (v == NULL) ? NULL : v;
retval = v;
break;
case TYPE_CODE:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment