[dovecot-cvs] dovecot/src/lib-dict dict.c,1.11,1.12
cras at dovecot.org
cras at dovecot.org
Sun Sep 10 15:33:12 EEST 2006
- Previous message: [dovecot-cvs] dovecot/src/lib array.h, 1.16, 1.17 ioloop-epoll.c, 1.15, 1.16 ioloop-kqueue.c, 1.11, 1.12 module-dir.c, 1.21, 1.22 seq-range-array.c, 1.6, 1.7
- Next message: [dovecot-cvs] dovecot/src/lib-index mail-cache-transaction.c, 1.51, 1.52 mail-cache.c, 1.83, 1.84 mail-index-sync-ext.c, 1.20, 1.21 mail-index-sync.c, 1.75, 1.76 mail-index-transaction.c, 1.78, 1.79 mail-index-view-sync.c, 1.54, 1.55 mail-index-view.c, 1.47, 1.48 mail-index.c, 1.239, 1.240
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/lib-dict
In directory talvi:/tmp/cvs-serv1034/lib-dict
Modified Files:
dict.c
Log Message:
Removed type parameter from ARRAY_CREATE since it's not needed anymore.
Index: dict.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-dict/dict.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- dict.c 30 Jul 2006 19:27:26 -0000 1.11
+++ dict.c 10 Sep 2006 12:33:08 -0000 1.12
@@ -23,7 +23,7 @@
void dict_driver_register(struct dict *driver)
{
if (!array_is_created(&dict_drivers))
- ARRAY_CREATE(&dict_drivers, default_pool, struct dict *, 8);
+ ARRAY_CREATE(&dict_drivers, default_pool, 8);
if (dict_driver_lookup(driver->name) != NULL) {
i_fatal("dict_driver_register(%s): Already registered",
- Previous message: [dovecot-cvs] dovecot/src/lib array.h, 1.16, 1.17 ioloop-epoll.c, 1.15, 1.16 ioloop-kqueue.c, 1.11, 1.12 module-dir.c, 1.21, 1.22 seq-range-array.c, 1.6, 1.7
- Next message: [dovecot-cvs] dovecot/src/lib-index mail-cache-transaction.c, 1.51, 1.52 mail-cache.c, 1.83, 1.84 mail-index-sync-ext.c, 1.20, 1.21 mail-index-sync.c, 1.75, 1.76 mail-index-transaction.c, 1.78, 1.79 mail-index-view-sync.c, 1.54, 1.55 mail-index-view.c, 1.47, 1.48 mail-index.c, 1.239, 1.240
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list