]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Changed bogus ref to textobject into xxobject.
authorGuido van Rossum <guido@python.org>
Wed, 2 Jan 1991 15:12:51 +0000 (15:12 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 2 Jan 1991 15:12:51 +0000 (15:12 +0000)
Objects/xxobject.c

index c3714e02df0aa3f9509900a48f77ffb9f9c23365..676f72772a8f6b1f14526c8789e5bcda46ff5abc 100644 (file)
@@ -25,7 +25,7 @@ static xxobject *
 newxxobject(arg)
        object *arg;
 {
-       textobject *xp;
+       xxobject *xp;
        xp = NEWOBJ(xxobject, &Xxtype);
        if (xp == NULL)
                return NULL;