Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8ccfc93

Browse files
committed
Removed unused variable
1 parent 95ffa23 commit 8ccfc93

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

Mac/Modules/macfsmodule.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,6 @@ mfsi_getattr(self, name)
260260
mfsiobject *self;
261261
char *name;
262262
{
263-
object *rv;
264-
265263
if ( strcmp(name, "Type") == 0 )
266264
return PyMac_BuildOSType(self->finfo.fdType);
267265
else if ( strcmp(name, "Creator") == 0 )

Modules/timemodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ ins(d, name, v)
302302
void
303303
inittime()
304304
{
305-
object *m, *d, *v;
305+
object *m, *d;
306306
m = initmodule("time", time_methods);
307307
d = getmoduledict(m);
308308
#ifdef HAVE_TZNAME

0 commit comments

Comments
 (0)