Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix compiler warnings. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
57897a4189b69aba5f1c67effb84a99b |
| User & Date: | mistachkin 2015-05-12 04:23:31.742 |
Context
|
2015-05-12
| ||
| 04:24 | Sync up custom MinGW makefile with the latest changes. ... (check-in: 0c6f8fe57d user: mistachkin tags: trunk) | |
| 04:23 | Fix compiler warnings. ... (check-in: 57897a4189 user: mistachkin tags: trunk) | |
|
2015-05-11
| ||
| 13:50 | If SQLite < 3.8.10, don't bother to provide a link to the /repo-tabsize web-page: it wouldn't provide any usefull result anyway. ... (check-in: f3d8588e6f user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/piechart.c.
| ︙ | ︙ | |||
108 109 110 111 112 113 114 | double x4,y4; /* End of line extending from x3,y3 */ double x5,y5; /* Text anchor */ double d1; /* radius to x4,y4 */ const char *zAnc; /* Anchor point for text */ double a1 = 0.0; /* Angle for first edge of slice */ double a2; /* Angle for second edge */ double a3; /* Angle at middle of slice */ | < | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | double x4,y4; /* End of line extending from x3,y3 */ double x5,y5; /* Text anchor */ double d1; /* radius to x4,y4 */ const char *zAnc; /* Anchor point for text */ double a1 = 0.0; /* Angle for first edge of slice */ double a2; /* Angle for second edge */ double a3; /* Angle at middle of slice */ unsigned char h; /* Hue */ const char *zClr; /* Color */ int l; /* Large arc flag */ int j; /* Wedge number */ double rTotal; /* Total piechart.amt */ double rTooSmall; /* Sum of pieChart.amt entries less than 1/60th */ int nTotal; /* Total number of entries in piechart */ |
| ︙ | ︙ |
Changes to src/rebuild.c.
| ︙ | ︙ | |||
541 542 543 544 545 546 547 |
** --wal Set Write-Ahead-Log journalling mode on the database
**
** See also: deconstruct, reconstruct
*/
void rebuild_database(void){
int forceFlag;
int randomizeFlag;
| | | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 |
** --wal Set Write-Ahead-Log journalling mode on the database
**
** See also: deconstruct, reconstruct
*/
void rebuild_database(void){
int forceFlag;
int randomizeFlag;
int errCnt = 0;
int omitVerify;
int doClustering;
const char *zPagesize;
int newPagesize = 0;
int activateWal;
int runVacuum;
int runDeanalyze;
|
| ︙ | ︙ |
Changes to src/stat.c.
| ︙ | ︙ | |||
378 379 380 381 382 383 384 |
/*
** WEBPAGE: repo-tabsize
**
** Show relative sizes of tables in the repository database.
*/
void repo_tabsize_page(void){
| < | 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
/*
** WEBPAGE: repo-tabsize
**
** Show relative sizes of tables in the repository database.
*/
void repo_tabsize_page(void){
int nPageFree;
sqlite3_int64 fsize;
char zBuf[100];
login_check_credentials();
if( !g.perm.Read ){ login_needed(g.anon.Read); return; }
style_header("Repository Table Sizes");
|
| ︙ | ︙ |