summaryrefslogtreecommitdiff
path: root/core/rdar.c
diff options
context:
space:
mode:
authorChloe M <chloe@faracom.org>2026-07-28 00:55:00 -0400
committerChloe M <chloe@faracom.org>2026-07-28 00:55:27 -0400
commitb9bf1eb2964a12673386d9ca0b97edf479c014eb (patch)
treefe6f31a7eaa6dc6659265400d91e775bc74c7f29 /core/rdar.c
parent82bfab9087574c0f2a812c132d02a718c6b53486 (diff)
packer: Reduce log spam
Signed-off-by: Chloe M <chloe@faracom.org>
Diffstat (limited to 'core/rdar.c')
-rw-r--r--core/rdar.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/rdar.c b/core/rdar.c
index 405bca0..c9cac50 100644
--- a/core/rdar.c
+++ b/core/rdar.c
@@ -263,12 +263,9 @@ idata_table_destroy(void)
{
struct idata_desc *desc, *next;
- printf("* dumping idata_table\n");
desc = TAILQ_FIRST(&d_desc_table);
while (desc != NULL) {
- printf("-- %s\n", desc->data.path);
view_destroy(&desc->file);
-
next = TAILQ_NEXT(desc, link);
TAILQ_REMOVE(&d_desc_table, desc, link);
desc = next;