]> err.no Git - mapper/commitdiff
Silence warnings.
authorKaj-Michael Lang <milang@angel.tal.org>
Fri, 10 Aug 2007 07:59:23 +0000 (10:59 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Fri, 10 Aug 2007 07:59:23 +0000 (10:59 +0300)
src/gpx.c
src/gpx.h

index 3971be7f865f42bc2f8f8af8dc32713c67f9a7ba..628bbb7d59d6be21e6fed4173e1df15c619fe961 100644 (file)
--- a/src/gpx.c
+++ b/src/gpx.c
@@ -54,6 +54,7 @@
 #include "gps.h"
 #include "mapper-types.h"
 #include "gpx.h"
+#include "path.h"
 
 #define XML_DATE_FORMAT "%FT%T"
 
@@ -437,7 +438,7 @@ gpx_chars(SaxData * data, const xmlChar * ch, int len)
  * Handle an entity in the parsing of a GPX file.  We don't do anything
  * special here.
  */
-xmlEntityPtr 
+static xmlEntityPtr 
 gpx_get_entity(SaxData * data, const xmlChar * name)
 {
        vprintf("%s()\n", __PRETTY_FUNCTION__);
@@ -448,7 +449,7 @@ gpx_get_entity(SaxData * data, const xmlChar * name)
 /**
  * Handle an error in the parsing of a GPX file.
  */
-void 
+static void 
 gpx_error(SaxData * data, const gchar * msg, ...)
 {
        vprintf("%s()\n", __PRETTY_FUNCTION__);
index 7b0dc98f50d49ddbff514ac88fb366dbbbf1483c..11c85cb41f240bbcb674dcd6ca591868c82b76c3 100644 (file)
--- a/src/gpx.h
+++ b/src/gpx.h
@@ -3,5 +3,7 @@
 
 void gpx_init(void);
 gboolean write_gpx(Path * path, GnomeVFSHandle * handle);
+gboolean parse_gpx(Path * to_replace, gchar * buffer, gint size, gint policy_old);
+
 
 #endif