Skip to content

Commit bcf3d05

Browse files
this time
1 parent b386f3b commit bcf3d05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/logic/archive.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -578,9 +578,9 @@ bool fossil_io_archive_remove(fossil_io_archive_t *archive, const char *entry_na
578578
void fossil_io_archive_print(fossil_io_archive_t *archive) {
579579
if (!archive) return;
580580

581-
fossil_io_printf("{cyan,bold}Archive:{reset} %s {yellow}(Type: %d, Entries: %zu){reset}\n",
581+
fossil_io_printf("{cyan}Archive:{reset} %s {yellow}(Type: %d, Entries: %zu){reset}\n",
582582
archive->path, archive->type, archive->entry_count);
583-
fossil_io_printf("{green,bold}%-40s %10s %10s %s{reset}\n", "Name", "Size", "Compressed", "Directory");
583+
fossil_io_printf("{green}%-40s %10s %10s %s{reset}\n", "Name", "Size", "Compressed", "Directory");
584584
fossil_io_printf("{green}%-40s %10s %10s %s{reset}\n", "----", "----", "----------", "---------");
585585

586586
for (size_t i = 0; i < archive->entry_count; i++) {

0 commit comments

Comments
 (0)