* mu-index.h: make stats size_t

This commit is contained in:
Dirk-Jan C. Binnema 2010-01-04 22:50:14 +02:00
parent 8aee842759
commit 1ce4469bca
1 changed files with 4 additions and 4 deletions

View File

@ -27,10 +27,10 @@ struct _MuIndex;
typedef struct _MuIndex MuIndex;
struct _MuIndexStats {
int _processed; /* number of msgs processed or counted */
int _updated; /* number of msgs new or updated */
int _cleaned_up; /* number of msgs cleaned up */
int _uptodate; /* number of msgs already uptodate */
size_t _processed; /* number of msgs processed or counted */
size_t _updated; /* number of msgs new or updated */
size_t _cleaned_up; /* number of msgs cleaned up */
size_t _uptodate; /* number of msgs already uptodate */
};
typedef struct _MuIndexStats MuIndexStats;