diff options
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 0b64e0a94e..dd781a0db8 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -3164,7 +3164,7 @@ enable_writable_fields(EContactEditor *editor) g_hash_table_insert (supported_hash, field, field); } - for (i = 0; i <= G_N_ELEMENTS (addresses); i ++) { + for (i = 0; i < G_N_ELEMENTS (addresses); i ++) { if (!strcmp (field, e_contact_field_name (addresses[i]))) { editor->address_editable [i] = TRUE; } |