diff options
author | Guido van Rossum <guido@python.org> | 1996-12-05 23:43:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-05 23:43:35 (GMT) |
commit | a376cc5cc86c62f912886c4002ed1a9b3b213b88 (patch) | |
tree | d505b439cc8f6aac1ba75374b6652857273274c0 /Modules/imageop.c | |
parent | 60fca2c90fe4d00715f4ae28d68560e67955ab9b (diff) | |
download | cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.zip cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.tar.gz cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.tar.bz2 |
Keep gcc -Wall happy.
Diffstat (limited to 'Modules/imageop.c')
-rw-r--r-- | Modules/imageop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/imageop.c b/Modules/imageop.c index 90e4f54..686d0c6 100644 --- a/Modules/imageop.c +++ b/Modules/imageop.c @@ -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; |