From 8e31fd6672eb3bfb7600abad3d26b63808e326b8 Mon Sep 17 00:00:00 2001 From: Julien BLACHE Date: Mon, 21 Jun 2010 19:19:13 +0200 Subject: [PATCH] Kill extra semi-colon --- src/httpd_rsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpd_rsp.c b/src/httpd_rsp.c index 7a5333e6..0fc62394 100644 --- a/src/httpd_rsp.c +++ b/src/httpd_rsp.c @@ -742,7 +742,7 @@ rsp_reply_browse(struct evhttp_request *req, char **uri, struct evkeyvalq *query * to return - this prevents mxml from sending out an empty * tag that the SoundBridge does not handle. It's hackish, but it works. */ - if (qp.results == 0); + if (qp.results == 0) mxmlNewText(items, 0, ""); db_query_end(&qp);