Kill extra semi-colon

This commit is contained in:
Julien BLACHE 2010-06-21 19:19:13 +02:00
parent 691e6a8c93
commit 8e31fd6672

View File

@ -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 <items/> * to return - this prevents mxml from sending out an empty <items/>
* tag that the SoundBridge does not handle. It's hackish, but it works. * tag that the SoundBridge does not handle. It's hackish, but it works.
*/ */
if (qp.results == 0); if (qp.results == 0)
mxmlNewText(items, 0, ""); mxmlNewText(items, 0, "");
db_query_end(&qp); db_query_end(&qp);