This commit is contained in:
sushen339
2025-11-18 17:38:19 +08:00
parent b534cee9db
commit aea4d9d71b
2 changed files with 2 additions and 2 deletions
BIN
View File
Binary file not shown.
+2 -2
View File
@@ -277,9 +277,9 @@ void show_subnet_aggregation(void) {
snprintf(display_subnet, sizeof(display_subnet), "%s%s", agg[i].subnet, suffix); snprintf(display_subnet, sizeof(display_subnet), "%s%s", agg[i].subnet, suffix);
if (is_child) { if (is_child) {
printf(" └─ %-16s %s(%d 个)%s\n", display_subnet, C_RED, agg[i].count, C_RESET); printf(" └─ %-19s %s(%d 个)%s\n", display_subnet, C_RED, agg[i].count, C_RESET);
} else { } else {
printf(" - %-18s %s(%d 个)%s\n", display_subnet, C_RED, agg[i].count, C_RESET); printf(" - %-22s %s(%d 个)%s\n", display_subnet, C_RED, agg[i].count, C_RESET);
} }
show_count++; show_count++;
} }