View Ticket
Not logged in
Ticket Hash: 8e6ab730f2cb3836afb6305b4c3f607fd4e835c9
Title: compile fails in android for virtualgeojson.c though misuse of spatialite_e
Status: Closed Type: Code_Defect
Severity: Critical Priority: Immediate
Subsystem: Resolution: Fixed
Last Modified: 2019-07-30 05:45:35
Version Found In: 5.0.0 beta1
User Comments:
mj10777 added on 2019-07-07 16:01:33:

virtualgeojson.c:2374 fails when being compiled for Android:

..jni/libspatialite-5.0.0/src/spatialite/virtualgeojson.c:2374:18: note: 
      treat the string as an argument to avoid this
          spatialite_e (error_message);

Needed correction:
 spatialite_e ("%s\n", error_message);
as done elsewhere within virtualgeojson.c.
(see lines 2234 and 2800)


sandro added on 2019-07-30 05:45:35:
fixed by commit e24e4ef7a0

thanks for noticing and reporting