Op za 23 nov. 2019 om 23:27 schreef Dennis Clarke:
> /usr/local/build/sqlite-src-3300100_Oracle_sparc64vii+.005/src/tclsqlite.c:
> "/usr/local/build/sqlite-src-3300100_Oracle_sparc64vii+.005/src/tclsqlite.c",
> line 2624: warning: argument #3 is incompatible with prototype:
>          prototype: pointer to long : "/usr/local/include/tclDecls.h",
> line 2866


Line 2611 of  tclsqlite.c reads:
      sqlite3_int64 mxSize = 0;
this should have been
      Tcl_WideInt mxSize = 0;

Tcl_WideInt is guaranteed to be at least a 64-bit type, but it might be
"long" or "long long" dependant on Tcl version or platform. So, the
warning is harmless, understandable, and easy to fix.

Regards,
      Jan Nijtmans
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to