From: Stefan Fritsch Date: Mon, 13 Jun 2011 16:50:41 +0000 (+0000) Subject: Remove spurious braces to fix clang warning X-Git-Tag: 2.3.13~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3607f659e51371de4aa0eb8134443c803bfe9135;p=thirdparty%2Fapache%2Fhttpd.git Remove spurious braces to fix clang warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1135171 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 98bf281be9c..13bf0a1e51d 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -72,7 +72,7 @@ static int parse_byterange(char *range, apr_off_t clength, return 0; } - if ((dash == range)) { + if (dash == range) { /* In the form "-5" */ if (apr_strtoff(&number, dash+1, &errp, 10) || *errp) { return 0;