Removed three unused variables from the Windows code.

This commit is contained in:
Guido van Rossum 2000-03-31 15:04:26 +00:00
parent e56793557c
commit 325942adb4
1 changed files with 0 additions and 3 deletions

View File

@ -728,14 +728,11 @@ new_mmap_object (PyObject * self, PyObject * args)
{ {
mmap_object * m_obj; mmap_object * m_obj;
unsigned long map_size; unsigned long map_size;
char * filename;
int namelen;
char * tagname = ""; char * tagname = "";
DWORD dwErr = 0; DWORD dwErr = 0;
int fileno; int fileno;
HFILE fh = 0; HFILE fh = 0;
OFSTRUCT file_info;
/* Patch the object type */ /* Patch the object type */
mmap_object_type.ob_type = &PyType_Type; mmap_object_type.ob_type = &PyType_Type;