From 7d1de708773685c8f1daff99622b6f82289c6924 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zden=C4=9Bk=20Salvet?= Date: Fri, 31 Aug 2007 14:16:05 +0000 Subject: [PATCH] Fix braces in conditional statement. --- org.glite.lb.common/src/xml_parse.c.T | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/org.glite.lb.common/src/xml_parse.c.T b/org.glite.lb.common/src/xml_parse.c.T index c2c6af1..3a0c88e 100644 --- a/org.glite.lb.common/src/xml_parse.c.T +++ b/org.glite.lb.common/src/xml_parse.c.T @@ -850,9 +850,10 @@ static void endQueryEvents(void *data, const char *el UNUSED_VAR) break; case 2: /* skip events of unknown type */ - if (XMLCtx->eventCode == EDG_WLL_EVENT_UNDEF) + if (XMLCtx->eventCode == EDG_WLL_EVENT_UNDEF) { edg_wll_FreeEvent(&(XMLCtx->eventsOutGlobal)[XMLCtx->position]); - XMLCtx->position--; + XMLCtx->position--; + } /* fallthough */ default: if (XMLCtx->char_buf) { -- 1.8.2.3