Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix compiler warning on MSVC. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
783a2a1b73082ca10dd910bf32c9c94d |
| User & Date: | mistachkin 2014-02-15 05:57:00.019 |
Context
|
2014-02-15
| ||
| 06:46 | Make TH1 tests work without relying on the exactly autosync setting value. ... (check-in: 2d90fd073e user: mistachkin tags: trunk) | |
| 06:14 | Create a repo and explicitly set the autosync setting so TH1 tests will run correctly regardless of the user's global setting. ... (Closed-Leaf check-in: 3baa7e3dc1 user: joel tags: pending-review) | |
| 05:57 | Fix compiler warning on MSVC. ... (check-in: 783a2a1b73 user: mistachkin tags: trunk) | |
| 05:27 | Pretend to be drh so merge5 tests run without error. ... (check-in: 052d80dff2 user: joel tags: trunk) | |
Changes
Changes to src/report.c.
| ︙ | ︙ | |||
923 924 925 926 927 928 929 |
azVals[i] = (const char *)sqlite3_column_text(pStmt, i);
}
if( xCallback(pArg, nCol, azVals, azCols) ){
break;
}
}
rc = sqlite3_finalize(pStmt);
| | | 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 |
azVals[i] = (const char *)sqlite3_column_text(pStmt, i);
}
if( xCallback(pArg, nCol, azVals, azCols) ){
break;
}
}
rc = sqlite3_finalize(pStmt);
fossil_free((void *)azVals);
return rc;
}
/*
** Output Javascript code that will enables sorting of the table with
** the id zTableId by clicking.
**
|
| ︙ | ︙ |