diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1994-12-14 12:55:17 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1994-12-14 12:55:17 (GMT) |
commit | 44fff3cfb5f594c33e1019c34c4c4e731f696199 (patch) | |
tree | 671b915e40ef7938079b68c3dfb39d63d7a5b6be | |
parent | 8fd2d94e37a987143e464fc4cfcd62d0930b313c (diff) | |
download | cpython-44fff3cfb5f594c33e1019c34c4c4e731f696199.zip cpython-44fff3cfb5f594c33e1019c34c4c4e731f696199.tar.gz cpython-44fff3cfb5f594c33e1019c34c4c4e731f696199.tar.bz2 |
Added missing initialization
-rw-r--r-- | Modules/imageop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/imageop.c b/Modules/imageop.c index 57cb90b..77da52e 100644 --- a/Modules/imageop.c +++ b/Modules/imageop.c @@ -363,7 +363,7 @@ imageop_dither2grey2(self, args) object *rv; int i; int pos; - int sum, nvalue; + int sum = 0, nvalue; if ( !getargs(args, "(s#ii)", &cp, &len, &x, &y) ) |