diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 20:50:14 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 21:01:03 +0800 |
commit | a66b3c81dc6b8d1dfba8329cf9aacf217c80010c (patch) | |
tree | 69f4b38e7cf57de398ed8d5d50b3ad68b16af875 /libempathy | |
parent | a7f1705e7202ccc9a6174fe3a315840977a62f6f (diff) | |
download | gsoc2013-empathy-a66b3c81dc6b8d1dfba8329cf9aacf217c80010c.tar gsoc2013-empathy-a66b3c81dc6b8d1dfba8329cf9aacf217c80010c.tar.gz gsoc2013-empathy-a66b3c81dc6b8d1dfba8329cf9aacf217c80010c.tar.bz2 gsoc2013-empathy-a66b3c81dc6b8d1dfba8329cf9aacf217c80010c.tar.lz gsoc2013-empathy-a66b3c81dc6b8d1dfba8329cf9aacf217c80010c.tar.xz gsoc2013-empathy-a66b3c81dc6b8d1dfba8329cf9aacf217c80010c.tar.zst gsoc2013-empathy-a66b3c81dc6b8d1dfba8329cf9aacf217c80010c.zip |
empathy-contact-groups: fix coding style and update FSF address
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-contact-groups.c | 8 | ||||
-rw-r--r-- | libempathy/empathy-contact-groups.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-contact-groups.c b/libempathy/empathy-contact-groups.c index 6973a960a..a9040f2df 100644 --- a/libempathy/empathy-contact-groups.c +++ b/libempathy/empathy-contact-groups.c @@ -14,8 +14,8 @@ * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA * * Authors: Martyn Russell <martyn@imendio.com> */ @@ -101,7 +101,7 @@ contact_groups_file_parse (const gchar *filename) if (!empathy_xml_validate (doc, CONTACT_GROUPS_DTD_FILENAME)) { g_warning ("Failed to validate file:'%s'", filename); - xmlFreeDoc(doc); + xmlFreeDoc (doc); xmlFreeParserCtxt (ctxt); return; } @@ -152,7 +152,7 @@ contact_groups_file_parse (const gchar *filename) DEBUG ("Parsed %d contact groups", g_list_length (groups)); - xmlFreeDoc(doc); + xmlFreeDoc (doc); xmlFreeParserCtxt (ctxt); } diff --git a/libempathy/empathy-contact-groups.h b/libempathy/empathy-contact-groups.h index e2e9810e3..181b28753 100644 --- a/libempathy/empathy-contact-groups.h +++ b/libempathy/empathy-contact-groups.h @@ -14,8 +14,8 @@ * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA * * Authors: Martyn Russell <martyn@imendio.com> */ |