From 2e60c988cb533dbc6c3abc63ae8b295e63dd2c0c Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Wed, 4 Jun 2014 12:35:25 +0800 Subject: discover/pxe-parser: Remove unnecessary semicolon We have an unnecessary semicolon on an empty for-loop, which causes a clang warning. Signed-off-by: Jeremy Kerr --- discover/pxe-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discover') diff --git a/discover/pxe-parser.c b/discover/pxe-parser.c index 98e1603..00f3b31 100644 --- a/discover/pxe-parser.c +++ b/discover/pxe-parser.c @@ -58,7 +58,7 @@ static struct pb_url *pxe_url_join(void *ctx, const struct pb_url *url, } else { const char *tmp; /* strip leading slashes */ - for (tmp = s; *tmp == '/'; tmp++); + for (tmp = s; *tmp == '/'; tmp++) ; new_url = pb_url_join(ctx, url, tmp); } -- cgit v1.2.1