changeset 12:6d95cfaa1e0b

Fixed a code typo.
author Atul Varma <varmaa@toolness.com>
date Sun, 28 Jun 2009 17:43:42 -0700
parents 551ba05fe6ad
children ca17531e8c81
files context.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/context.c	Sun Jun 28 17:28:57 2009 -0700
+++ b/context.c	Sun Jun 28 17:43:42 2009 -0700
@@ -31,7 +31,7 @@
   PyObject_HEAD_INIT(NULL)
   0,                           /*ob_size*/
   "pymonkey.Context",          /*tp_name*/
-  sizeof(PYM_JSRuntimeObject), /*tp_basicsize*/
+  sizeof(PYM_JSContextObject), /*tp_basicsize*/
   0,                           /*tp_itemsize*/
   /*tp_dealloc*/
   (destructor) PYM_JSContextDealloc,