Index: datastore.c =================================================================== RCS file: /cvsroot/bogofilter/bogofilter/src/datastore.c,v retrieving revision 1.8 diff -u -r1.8 datastore.c --- datastore.c 6 Sep 2003 20:50:39 -0000 1.8 +++ datastore.c 7 Sep 2003 21:40:15 -0000 @@ -154,7 +154,7 @@ memset(val, 0, sizeof(*val)); - for (dsh->index = 0; dsh->index < dsh->count; (int)dsh->index += 1) { + for (dsh->index = 0; dsh->index < dsh->count; dsh->index++) { int ret = db_get_dbvalue(dsh, &ex_key, &ex_data); switch (ret) { @@ -210,7 +210,7 @@ if (datestamp_tokens || today != 0) val->date = today; - for (dsh->index = 0; dsh->index < dsh->count; (int)dsh->index += 1) { + for (dsh->index = 0; dsh->index < dsh->count; dsh->index++) { /* With two wordlists, it's necessary to check index and ** run_type to avoid writing all tokens to both lists. */