aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-06-23 05:47:10 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-06-23 05:47:56 +0800
commit7ead087382b7a403b2f0eca2f70389a758ff1a00 (patch)
tree90d63696feecff6c5bb93887491ef6707f22bd16 /libempathy-gtk
parentd296a5a92b346ae2237a71b60000f30dad3429b1 (diff)
downloadgsoc2013-empathy-7ead087382b7a403b2f0eca2f70389a758ff1a00.tar
gsoc2013-empathy-7ead087382b7a403b2f0eca2f70389a758ff1a00.tar.gz
gsoc2013-empathy-7ead087382b7a403b2f0eca2f70389a758ff1a00.tar.bz2
gsoc2013-empathy-7ead087382b7a403b2f0eca2f70389a758ff1a00.tar.lz
gsoc2013-empathy-7ead087382b7a403b2f0eca2f70389a758ff1a00.tar.xz
gsoc2013-empathy-7ead087382b7a403b2f0eca2f70389a758ff1a00.tar.zst
gsoc2013-empathy-7ead087382b7a403b2f0eca2f70389a758ff1a00.zip
Fix coding style and FSF address
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-plist.c12
-rw-r--r--libempathy-gtk/empathy-plist.h2
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__