Mercurial > noffle
diff src/content.c @ 59:e612b263934f noffle
[svn] Changed some variable types and used some casts to avoid compiler
warnings about signedness. In general, int should be used for parameters
for allowing a signedness assertion in the function.
author | enz |
---|---|
date | Fri, 12 May 2000 17:52:41 +0100 |
parents | 125d79c9e586 |
children | 22b3e3dfc8c2 |
line wrap: on
line diff
--- a/src/content.c Fri May 12 17:52:07 2000 +0100 +++ b/src/content.c Fri May 12 17:52:41 2000 +0100 @@ -1,7 +1,7 @@ /* content.c - $Id: content.c 60 2000-05-09 22:28:38Z uh1763 $ + $Id: content.c 65 2000-05-12 16:52:41Z enz $ */ #if HAVE_CONFIG_H @@ -31,8 +31,8 @@ int vecFirst; /* First article number in vector */ int first; /* First live article number */ int last; /* Last article number */ - unsigned int size; /* Number of overviews. */ - unsigned int max; /* Size of elem. */ + int size; /* Number of overviews. */ + int max; /* Size of elem. */ Over **elem; /* Ptr to array with ptrs to overviews. NULL entries for non-existing article numbers in group. */