Browse code

Remove warning

git-svn: trunk@1955

Nigel Horne authored on 2006/05/04 17:41:54
Showing 1 changed files
... ...
@@ -52,8 +52,8 @@ void	blobGrow(blob *b, size_t len);
52 52
 typedef	struct fileblob {
53 53
 	FILE	*fp;
54 54
 	blob	b;
55
-	int	isNotEmpty : 1;
56
-	int	isInfected : 1;
55
+	unsigned	int	isNotEmpty : 1;
56
+	unsigned	int	isInfected : 1;
57 57
 	cli_ctx	*ctx;
58 58
 } fileblob;
59 59