Fossil SCM
Fix an issue with the report labels for merge and non-merge check-ins.
Commit
385d6d146dc24212978537345c425eb24749e529dd76dd9f48c3ae5c94cd9c4a
Parent
37a80fbfc71d741…
1 file changed
+4
+4
| --- src/statrep.c | ||
| +++ src/statrep.c | ||
| @@ -146,10 +146,14 @@ | ||
| 146 | 146 | static const char *stats_report_label_for_type(){ |
| 147 | 147 | assert( statsReportType && "Must call stats_report_init_view() first." ); |
| 148 | 148 | switch( statsReportType ){ |
| 149 | 149 | case 'c': |
| 150 | 150 | return "check-ins"; |
| 151 | + case 'm': | |
| 152 | + return "merge check-ins"; | |
| 153 | + case 'n': | |
| 154 | + return "non-merge check-ins"; | |
| 151 | 155 | case 'e': |
| 152 | 156 | return "technotes"; |
| 153 | 157 | case 'f': |
| 154 | 158 | return "forum posts"; |
| 155 | 159 | case 'w': |
| 156 | 160 |
| --- src/statrep.c | |
| +++ src/statrep.c | |
| @@ -146,10 +146,14 @@ | |
| 146 | static const char *stats_report_label_for_type(){ |
| 147 | assert( statsReportType && "Must call stats_report_init_view() first." ); |
| 148 | switch( statsReportType ){ |
| 149 | case 'c': |
| 150 | return "check-ins"; |
| 151 | case 'e': |
| 152 | return "technotes"; |
| 153 | case 'f': |
| 154 | return "forum posts"; |
| 155 | case 'w': |
| 156 |
| --- src/statrep.c | |
| +++ src/statrep.c | |
| @@ -146,10 +146,14 @@ | |
| 146 | static const char *stats_report_label_for_type(){ |
| 147 | assert( statsReportType && "Must call stats_report_init_view() first." ); |
| 148 | switch( statsReportType ){ |
| 149 | case 'c': |
| 150 | return "check-ins"; |
| 151 | case 'm': |
| 152 | return "merge check-ins"; |
| 153 | case 'n': |
| 154 | return "non-merge check-ins"; |
| 155 | case 'e': |
| 156 | return "technotes"; |
| 157 | case 'f': |
| 158 | return "forum posts"; |
| 159 | case 'w': |
| 160 |