diff options
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-plist.c | 12 | ||||
-rw-r--r-- | libempathy-gtk/empathy-plist.h | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/libempathy-gtk/empathy-plist.c b/libempathy-gtk/empathy-plist.c index e5577afaf..4cc392bec 100644 --- a/libempathy-gtk/empathy-plist.c +++ b/libempathy-gtk/empathy-plist.c @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this code; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "config.h" @@ -124,7 +124,7 @@ empathy_plist_parse_one_dict_entry (xmlNode *a_node, GHashTable *dict) GValue *value; while (cur_node && - (xmlStrcmp(cur_node->name, (xmlChar *) "key") != 0)) { + (xmlStrcmp (cur_node->name, (xmlChar *) "key") != 0)) { cur_node = cur_node->next; } if (!cur_node) { @@ -293,8 +293,8 @@ empathy_plist_parse_from_file (const char *filename) parsed_doc = empathy_plist_parse (root_element); - xmlFreeDoc(doc); - xmlCleanupParser(); + xmlFreeDoc (doc); + xmlCleanupParser (); return parsed_doc; } @@ -328,8 +328,8 @@ empathy_plist_parse_from_memory (const char *data, gsize len) parsed_doc = empathy_plist_parse (root_element); - xmlFreeDoc(doc); - xmlCleanupParser(); + xmlFreeDoc (doc); + xmlCleanupParser (); return parsed_doc; } diff --git a/libempathy-gtk/empathy-plist.h b/libempathy-gtk/empathy-plist.h index 19e4845af..a15ad6a01 100644 --- a/libempathy-gtk/empathy-plist.h +++ b/libempathy-gtk/empathy-plist.h @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this code; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef __EMPATHY_PLIST_H__ |