Browse code

clamscan: change iterator to unsigned

David Raynor authored on 2012/08/08 01:37:11
Showing 1 changed files
... ...
@@ -213,7 +213,8 @@ static cl_error_t meta(const char* container_type, unsigned long fsize_container
213 213
 
214 214
 static void scanfile(const char *filename, struct cl_engine *engine, const struct optstruct *opts, unsigned int options)
215 215
 {
216
-	int ret = 0, fd, included, printclean = 1, i;
216
+	int ret = 0, fd, included, printclean = 1;
217
+	unsigned i;
217 218
 	const struct optstruct *opt;
218 219
 	const char *virname;
219 220
 	STATBUF sb;