From 9cb0afb46ce6ffef2be6c67f7db0287c0f88f95a Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Fri, 30 Nov 2012 13:03:44 +0100 Subject: [PATCH] fixed (irrelevant) warnings about potentially uninitialised variable --- arangod/FulltextIndex/FTS_index.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arangod/FulltextIndex/FTS_index.c b/arangod/FulltextIndex/FTS_index.c index 3c610b0409..e87593abbd 100644 --- a/arangod/FulltextIndex/FTS_index.c +++ b/arangod/FulltextIndex/FTS_index.c @@ -697,9 +697,9 @@ uint64_t findkkey2(FTS_real_index * ix, uint64_t * word) { /* skip over the B-key into index 3 */ docb=ZStrDec(zstr,&zcbky); - } /* silly use of docb to get rid of compiler warning */ - if(docb==0xffffff) printf("impossible\n"); + if(docb==0xffffff) printf("impossible\n"); + } ZStrCxClear(&zcdelt, &ctx); newlet=0; while(1)