mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Keep gcc -Wall happy.
This commit is contained in:
parent
60fca2c90f
commit
a376cc5cc8
27 changed files with 93 additions and 56 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue