]> git.pld-linux.org Git - packages/libspatialite.git/blob - libspatialite-lwgeom.patch
ec49790efc9e64a5320f5b373d4ad32d1352f847
[packages/libspatialite.git] / libspatialite-lwgeom.patch
1 --- libspatialite-4.3.0a/src/gaiageo/gg_lwgeom.c.orig   2016-03-19 07:15:09.917471871 +0100
2 +++ libspatialite-4.3.0a/src/gaiageo/gg_lwgeom.c        2016-03-19 07:15:14.954138404 +0100
3 @@ -92,7 +92,7 @@
4  lwgaia_noticereporter (const char *fmt, va_list ap)
5  {
6      char *msg;
7 -    if (!lw_vasprintf (&msg, fmt, ap))
8 +    if (!vasprintf (&msg, fmt, ap))
9        {
10           va_end (ap);
11           return;
12 @@ -106,7 +106,7 @@
13  lwgaia_errorreporter (const char *fmt, va_list ap)
14  {
15      char *msg;
16 -    if (!lw_vasprintf (&msg, fmt, ap))
17 +    if (!vasprintf (&msg, fmt, ap))
18        {
19           va_end (ap);
20           return;
This page took 0.044279 seconds and 2 git commands to generate.