Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edcc38a commit 05ab111Copy full SHA for 05ab111
1 file changed
Objects/object.c
@@ -46,8 +46,6 @@ newobject(tp)
46
return op;
47
}
48
49
-#if 0 /* unused */
50
-
51
varobject *
52
newvarobject(tp, size)
53
typeobject *tp;
@@ -56,15 +54,13 @@ newvarobject(tp, size)
56
54
varobject *op = (varobject *)
57
55
malloc(tp->tp_basicsize + size * tp->tp_itemsize);
58
if (op == NULL)
59
- return err_nomem();
+ return (varobject *)err_nomem();
60
NEWREF(op);
61
op->ob_type = tp;
62
op->ob_size = size;
63
64
65
66
-#endif
67
68
int StopPrint; /* Flag to indicate printing must be stopped */
69
70
static int prlevel;
0 commit comments