summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1994-12-14 12:55:17 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1994-12-14 12:55:17 (GMT)
commit44fff3cfb5f594c33e1019c34c4c4e731f696199 (patch)
tree671b915e40ef7938079b68c3dfb39d63d7a5b6be /Modules
parent8fd2d94e37a987143e464fc4cfcd62d0930b313c (diff)
downloadcpython-44fff3cfb5f594c33e1019c34c4c4e731f696199.zip
cpython-44fff3cfb5f594c33e1019c34c4c4e731f696199.tar.gz
cpython-44fff3cfb5f594c33e1019c34c4c4e731f696199.tar.bz2
Added missing initialization
Diffstat (limited to 'Modules')
-rw-r--r--Modules/imageop.c2
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) )