From 0e238ce61a9f8ca240e0081ca1121616d3373030 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Sun, 24 Feb 2008 05:24:26 +0100 Subject: [PATCH] Fixed a bug in btreenext. --- common/utils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/utils.c b/common/utils.c index 7a7de92..cd2a80a 100644 --- a/common/utils.c +++ b/common/utils.c @@ -42,7 +42,8 @@ struct treeiter { struct btree *n; int s; } *st; - size_t stsize, sp; + size_t stsize; + int sp; }; static char *base64set = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; -- 2.11.0