aboutsummaryrefslogtreecommitdiff
path: root/src/addrindex.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-03-01 06:09:53 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-03-01 06:09:53 +0000
commitcd0ffd60564ac99140daa95b1377a8cf853d9723 (patch)
treeaa54983ff2c53c93287db019fd0738a53b01331e /src/addrindex.c
parent5a281e7073bb7d349d9c800e98dc69d0dcbc5eb8 (diff)
renamed variable 'interface' to 'iface'.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2850 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/addrindex.c')
-rw-r--r--src/addrindex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/addrindex.c b/src/addrindex.c
index c18b9595..efe0b3f1 100644
--- a/src/addrindex.c
+++ b/src/addrindex.c
@@ -1684,17 +1684,17 @@ gint addrindex_create_new_books( AddressIndex *addrIndex ) {
gint addrindex_create_extra_books( AddressIndex *addrIndex ) {
GList *node_ds;
- AddressInterface *interface = NULL;
+ AddressInterface *iface = NULL;
AddressDataSource *ds = NULL;
const gchar *ds_name;
g_return_val_if_fail(addrIndex != NULL, -1);
- interface = addrindex_get_interface(addrIndex, ADDR_IF_BOOK);
- if (!interface)
+ iface = addrindex_get_interface(addrIndex, ADDR_IF_BOOK);
+ if (!iface)
return -1;
- for (node_ds = interface->listSource; node_ds != NULL;
+ for (node_ds = iface->listSource; node_ds != NULL;
node_ds = node_ds->next) {
ds = node_ds->data;
ds_name = addrindex_ds_get_name(ds);