1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Quiet some warnings.

- 1 'suggest parentheses around assignment used as truth value'
- a few "subscript has type `char'"


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84519 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brian Havard
2000-01-26 07:07:49 +00:00
parent a452d1f152
commit 3f31dc4004
2 changed files with 3 additions and 3 deletions

View File

@@ -222,7 +222,7 @@ static int get_path_info(request_rec *r)
char *p;
int iCount=0;
p = path;
while (p = strchr(p,'/')) {
while ((p = strchr(p,'/')) != NULL) {
p++;
iCount++;
}