From 87be3734a81ab7521e72524e2636b07a73cae345 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 1 Dec 2009 10:49:49 +0100 Subject: [PATCH] Fix switch label --- src/rpn2cql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpn2cql.c b/src/rpn2cql.c index f94860d..e133bec 100644 --- a/src/rpn2cql.c +++ b/src/rpn2cql.c @@ -82,7 +82,7 @@ static const char *lookup_relation_index_from_attr(Z_AttributeList *attributes) case 102: /* relevance is supported in CQL, but not implemented yet */ return 0; - otherwise: + default: /* Invalid relation */ return 0; } -- 1.7.10.4