Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the timeline.c module to be C89-compliant. MSVC needs this. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8a5f2a7a3a3fded92c151fcd3b1579fd |
| User & Date: | drh 2011-08-27 17:53:16.945 |
Context
|
2011-08-27
| ||
| 18:05 | Versionable settings are only checked if the local _FOSSIL_ database is already opened. Versionable settings no longer attempts to open that database itself. This fixes an issue with the Admin/Settings page. ... (check-in: a2cc6bc6dc user: drh tags: trunk) | |
| 17:53 | Fix the timeline.c module to be C89-compliant. MSVC needs this. ... (check-in: 8a5f2a7a3a user: drh tags: trunk) | |
|
2011-08-26
| ||
| 14:49 | Add the colortest query parameter to the brlist webpage. ... (check-in: d0daac20da user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
1257 1258 1259 1260 1261 1262 1263 |
** 4. Number of non-merge children
** 5. Number of parents
*/
void print_timeline(Stmt *q, int mxLine, int showfiles){
int nLine = 0;
char zPrevDate[20];
const char *zCurrentUuid=0;
| < > | 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
** 4. Number of non-merge children
** 5. Number of parents
*/
void print_timeline(Stmt *q, int mxLine, int showfiles){
int nLine = 0;
char zPrevDate[20];
const char *zCurrentUuid=0;
int fchngQueryInit = 0; /* True if fchngQuery is initialized */
Stmt fchngQuery; /* Query for file changes on check-ins */
zPrevDate[0] = 0;
if( g.localOpen ){
int rid = db_lget_int("checkout", 0);
zCurrentUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
}
while( db_step(q)==SQLITE_ROW && nLine<=mxLine ){
|
| ︙ | ︙ |