Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor gcc compiler warnings |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a9d1d46f659937412cc37196a64ed52c |
User & Date: | jan.nijtmans 2017-04-12 11:39:23.012 |
Context
2017-04-12
| ||
18:40 | Fix a typo on the aboutdownload.wiki documentation page. ... (check-in: f2e9eeb1 user: drh tags: trunk) | |
11:39 | Minor gcc compiler warnings ... (check-in: a9d1d46f user: jan.nijtmans tags: trunk) | |
11:26 | Suppress "database locked" warnings on the "PRAGMA optimize" that occurs as the process is shutting down. ... (check-in: 41956e70 user: drh tags: trunk) | |
Changes
Changes to src/export.c.
︙ | ︙ | |||
483 484 485 486 487 488 489 | ** --rename-trunk NAME use NAME as name of exported trunk branch ** --repository|-R REPOSITORY export the given REPOSITORY ** ** See also: import */ void export_cmd(void){ Stmt q, q2, q3; | < | 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | ** --rename-trunk NAME use NAME as name of exported trunk branch ** --repository|-R REPOSITORY export the given REPOSITORY ** ** See also: import */ void export_cmd(void){ Stmt q, q2, q3; Bag blobs, vers; unsigned int unused_mark = 1; const char *markfile_in; const char *markfile_out; bag_init(&blobs); bag_init(&vers); |
︙ | ︙ | |||
716 717 718 719 720 721 722 | printf("tag "); print_ref(zTagname); printf("\nfrom %s\n", zMark); free(zMark); printf("tagger"); print_person(zUser); printf(" %s +0000\n", zSecSince1970); | | | 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 | printf("tag "); print_ref(zTagname); printf("\nfrom %s\n", zMark); free(zMark); printf("tagger"); print_person(zUser); printf(" %s +0000\n", zSecSince1970); printf("data %d\n", zValue==NULL?0:(int)strlen(zValue)+1); if( zValue!=NULL ) printf("%s\n",zValue); } db_finalize(&q); if( markfile_out!=0 ){ FILE *f; f = fossil_fopen(markfile_out, "w"); |
︙ | ︙ |