[Python-checkins] CVS: python/dist/src/Modules structmodule.c,2.52,2.53

Fred L. Drake fdrake@users.sourceforge.net
Wed, 13 Feb 2002 23:16:32 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv22548/Modules

Modified Files:
	structmodule.c 
Log Message:
Fix typo.

Index: structmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/structmodule.c,v
retrieving revision 2.52
retrieving revision 2.53
diff -C2 -d -r2.52 -r2.53
*** structmodule.c	14 Feb 2002 07:11:23 -0000	2.52
--- structmodule.c	14 Feb 2002 07:16:30 -0000	2.53
***************
*** 1516,1519 ****
  	}
  	Py_INCREF(StructError);
! 	PyModule_AddObject(d, "error", StructError);
  }
--- 1516,1519 ----
  	}
  	Py_INCREF(StructError);
! 	PyModule_AddObject(m, "error", StructError);
  }