Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make everything compile warning-free with -Wall -Werror |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a32258454ca08ac8f2782ba04ada370e |
User & Date: | jan.nijtmans 2020-02-12 12:37:06.592 |
Context
2020-02-12
| ||
12:37 | Version 1.1.1 -> 1.1.2 check-in: 3afaad492c user: jan.nijtmans tags: trunk | |
12:37 | Make everything compile warning-free with -Wall -Werror check-in: a32258454c user: jan.nijtmans tags: trunk | |
2020-02-11
| ||
11:03 | TEA update. From now on, compile with -DTCL_NO_DEPRECATED=1. Add missing LDFLAGS and LDFLAGS_DEFAULT to Makefile.in check-in: ce948b780b user: jan.nijtmans tags: trunk | |
Changes
Changes to generic/tdbc.c.
︙ | ︙ | |||
155 156 157 158 159 160 161 | * errorInfo * *----------------------------------------------------------------------------- */ static int TdbcMapSqlStateObjCmd( | | > > | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | * errorInfo * *----------------------------------------------------------------------------- */ static int TdbcMapSqlStateObjCmd( ClientData dummy, /* No client data */ Tcl_Interp* interp, /* Tcl interpreter */ int objc, /* Parameter count */ Tcl_Obj *const objv[] /* Parameter vector */ ) { (void)dummy; if (objc != 2) { Tcl_WrongNumArgs(interp, 1, objv, "sqlstate"); return TCL_ERROR; } else { const char* sqlstate = Tcl_GetString(objv[1]); Tcl_SetObjResult(interp, Tcl_NewStringObj(Tdbc_MapSqlState(sqlstate), -1)); |
︙ | ︙ |
Changes to generic/tdbcTokenize.c.
︙ | ︙ | |||
184 185 186 187 188 189 190 | * Tdbc_TokenizeSql above. * *----------------------------------------------------------------------------- */ MODULE_SCOPE int TdbcTokenizeObjCmd( | | < > | 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | * Tdbc_TokenizeSql above. * *----------------------------------------------------------------------------- */ MODULE_SCOPE int TdbcTokenizeObjCmd( ClientData dummy, /* Unused */ Tcl_Interp* interp, /* Tcl interpreter */ int objc, /* Parameter count */ Tcl_Obj *const objv[] /* Parameter vector */ ) { Tcl_Obj* retval; (void)dummy; /* Check param count */ if (objc != 2) { Tcl_WrongNumArgs(interp, 1, objv, "statement"); return TCL_ERROR; } |
︙ | ︙ |