Commit 48915423 authored by Tres Seaver's avatar Tres Seaver

Placate GCC, which is fooled by the goto.

parent 6cc7b937
......@@ -688,7 +688,7 @@ static PyObject *
Bucket_maxminKey(Bucket *self, PyObject *args, int min)
{
PyObject *key=0;
int rc, offset;
int rc, offset = 0;
int empty_bucket = 1;
if (args && ! PyArg_ParseTuple(args, "|O", &key)) return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment