aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-meta.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-meta.c')
-rw-r--r--e-util/e-meta.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/e-util/e-meta.c b/e-util/e-meta.c
index 56e8d3bca9..2b0dce5c30 100644
--- a/e-util/e-meta.c
+++ b/e-util/e-meta.c
@@ -30,10 +30,6 @@
#include <glib.h>
-#include "e-meta.h"
-
-#include <gal/util/e-util.h>
-
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/xmlmemory.h>
@@ -43,6 +39,10 @@
#include <errno.h>
#include <string.h>
+#include <gal/util/e-xml-utils.h>
+#include <gal/util/e-util.h>
+#include "e-meta.h"
+
static GObjectClass *e_meta_parent_class;
struct _meta_data {
@@ -441,7 +441,7 @@ static char *meta_filename(const char *base, const char *key)
while ( (c = *p++) ) {
if (c == '/')
- c == '_';
+ c = '_';
*o++ = c;
}
strcpy(o, ".emeta");