Commit 3012dbf2 authored by Jeremy Hylton's avatar Jeremy Hylton

Replace nonsense UNLESS(&copied) with UNLESS(copied).

parent e97494b3
......@@ -12,7 +12,7 @@
****************************************************************************/
#define BTREETEMPLATE_C "$Id: BTreeTemplate.c,v 1.23 2002/02/21 21:41:17 jeremy Exp $\n"
#define BTREETEMPLATE_C "$Id: BTreeTemplate.c,v 1.24 2002/02/28 20:12:00 jeremy Exp $\n"
/*
** _BTree_get
......@@ -695,7 +695,7 @@ _BTree_setstate(BTree *self, PyObject *state, int noval)
{
COPY_KEY_FROM_ARG(d->key, PyTuple_GET_ITEM(items,l), copied);
l++;
UNLESS (&copied) return -1;
UNLESS (copied) return -1;
INCREF_KEY(d->key);
}
d->value=PyTuple_GET_ITEM(items,l);
......
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