Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a compiler warning that occurs when building the TCL interface. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fc36034bdc3b21e91f24be812e103da2 |
User & Date: | drh 2009-10-24 15:51:34.000 |
Context
2009-10-26
| ||
22:08 | Remove some obsolete code within #if 0 that was causing developer concern. (check-in: 1d64e9453f user: drh tags: trunk) | |
2009-10-24
| ||
15:51 | Fix a compiler warning that occurs when building the TCL interface. (check-in: fc36034bdc user: drh tags: trunk) | |
03:04 | Another attempt at getting the pTail pointer computations correct for sqlite3_prepare16(). Ticket [3fe897352e]. (check-in: a96b4e8c01 user: drh tags: trunk) | |
Changes
Changes to src/tclsqlite.c.
︙ | ︙ | |||
33 34 35 36 37 38 39 | ** appended to the amalgamation. */ #ifndef SQLITE_AMALGAMATION # include "sqliteInt.h" # include <stdlib.h> # include <string.h> # include <assert.h> | < > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | ** appended to the amalgamation. */ #ifndef SQLITE_AMALGAMATION # include "sqliteInt.h" # include <stdlib.h> # include <string.h> # include <assert.h> #endif #include <ctype.h> /* * Windows needs to know which symbols to export. Unix does not. * BUILD_sqlite should be undefined for Unix. */ #ifdef BUILD_sqlite #undef TCL_STORAGE_CLASS |
︙ | ︙ |