Differences From Artifact [27bbdc1772]:
- File src/update.c — part of check-in [b51dcc3162] at 2015-05-18 14:33:14 on branch trunk — Fix harmless compiler warnings. (user: drh size: 28000)
To Artifact [e4e6c94829]:
- File src/update.c — part of check-in [ab5b8d369c] at 2015-05-18 14:49:52 on branch trunk — A few more harmless compiler warnings (discovered using -Wall in latest gcc) (user: jan.nijtmans size: 27986) [more...]
| ︙ | |||
590 591 592 593 594 595 596 | 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | - |
/*
** Create empty directories specified by the empty-dirs setting.
*/
void ensure_empty_dirs_created(void){
char *zEmptyDirs = db_get("empty-dirs", 0);
if( zEmptyDirs!=0 ){
int i;
|
| ︙ |