Keep gcc -Wall happy.

This commit is contained in:
Guido van Rossum 1996-12-05 23:43:35 +00:00
parent 60fca2c90f
commit a376cc5cc8
27 changed files with 93 additions and 56 deletions

View file

@ -458,7 +458,7 @@ imageop_grey22grey(self, args)
int x, y, len, nlen;
unsigned char *cp, *ncp;
object *rv;
int i, pos, value, nvalue;
int i, pos, value = 0, nvalue;
if ( !getargs(args, "(s#ii)", &cp, &len, &x, &y) )
return 0;
@ -495,7 +495,7 @@ imageop_grey42grey(self, args)
int x, y, len, nlen;
unsigned char *cp, *ncp;
object *rv;
int i, pos, value, nvalue;
int i, pos, value = 0, nvalue;
if ( !getargs(args, "(s#ii)", &cp, &len, &x, &y) )
return 0;