From 1ce4469bca57d5f2011d1c36da81a05cfa5dc729 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Mon, 4 Jan 2010 22:50:14 +0200 Subject: [PATCH] * mu-index.h: make stats size_t --- src/mu-index.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mu-index.h b/src/mu-index.h index 1e7f3d97..8f2ce7d7 100644 --- a/src/mu-index.h +++ b/src/mu-index.h @@ -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;