comparison mercurial/bdiff.c @ 435:e731d25ddab2

Fix a compile warning for bdiff -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fix a compile warning for bdiff manifest hash: 263a8d670a4960f57b6738d41b40626efe1d90d5 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD4DBQFCubyMywK+sNU5EO8RAvw5AJ4usI49PlchNMgytp29Fajf+6aGfgCY/7YV PBZf1pfbBH3nO0gEi33CNg== =cw8/ -----END PGP SIGNATURE-----
author mpm@selenic.com
date Wed, 22 Jun 2005 11:31:24 -0800
parents 79c694462294
children f81a011fba3d
comparison
equal deleted inserted replaced
434:08f00b6494f4 435:e731d25ddab2
237 return l; 237 return l;
238 } 238 }
239 239
240 static PyObject *blocks(PyObject *self, PyObject *args) 240 static PyObject *blocks(PyObject *self, PyObject *args)
241 { 241 {
242 PyObject *sa, *sb, *rl, *m; 242 PyObject *sa, *sb, *rl = NULL, *m;
243 struct line *a, *b; 243 struct line *a, *b;
244 struct hunklist l; 244 struct hunklist l;
245 struct hunk *h; 245 struct hunk *h;
246 int an, bn, pos = 0; 246 int an, bn, pos = 0;
247 247