Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a new #include to report.c that is needed by DMC/PellesC compilers. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f5acf22b24b3f2d78fd0e9806b18f8bd |
| User & Date: | drh 2010-12-30 16:46:54.000 |
Context
|
2010-12-30
| ||
| 16:48 | Fix an out-of-order local variable declaration in vfile.c. ... (check-in: 1a6a154a4e user: drh tags: trunk) | |
| 16:46 | Add a new #include to report.c that is needed by DMC/PellesC compilers. ... (check-in: f5acf22b24 user: drh tags: trunk) | |
| 14:41 | Add a -local option to the "date" TH1 command. This allows a custom ticket-edit script to use localtime instead of UTC for the date stamp for when a comment is added. Also modify the default ticket-edit script to show UTC after the date stamp, to avoid ambiguity. Ticket [5c1490e26b8b2f8]. ... (check-in: e07625279c user: drh tags: trunk) | |
Changes
Changes to src/report.c.
| ︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | ** http://www.hwaci.com/drh/ ** ******************************************************************************* ** ** Code to generate the ticket listings */ #include "config.h" #include "report.h" #include <assert.h> /* Forward references to static routines */ static void report_format_hints(void); /* | > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ** http://www.hwaci.com/drh/ ** ******************************************************************************* ** ** Code to generate the ticket listings */ #include "config.h" #include <time.h> #include "report.h" #include <assert.h> /* Forward references to static routines */ static void report_format_hints(void); /* |
| ︙ | ︙ |