Browse Source

- fixed several warnings regarding signed/unsigned ops, incomplet
initializers for static data.

Based on a patch send by Eliot Gable <[email protected]> for increasing
the level of warning messages




git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@1782 689a6050-402a-0410-94f2-e92a70836424

Bogdan-Andrei Iancu 18 years ago
parent
commit
130215ba4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/srdb1/db_id.c

+ 1 - 1
lib/srdb1/db_id.c

@@ -69,7 +69,7 @@ static int parse_db_url(struct db_id* id, const char* url)
 	};
 
 	enum state st;
-	int len, i;
+	unsigned int len, i;
 	const char* begin;
 	char* prev_token;