summaryrefslogtreecommitdiff
path: root/src/analysis/scan/matches/pending.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2023-09-12 21:55:01 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2023-09-12 21:55:01 (GMT)
commit31131323ee211aed77d01bdac61ad371524620a2 (patch)
tree3fad07f6b53b62e60b4bfbb572512e6865a63281 /src/analysis/scan/matches/pending.c
parent6f160d1b1e1bfdd06414d5b6c49a0c9d9fc8a830 (diff)
Delete lots of debug output.
Diffstat (limited to 'src/analysis/scan/matches/pending.c')
-rw-r--r--src/analysis/scan/matches/pending.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/analysis/scan/matches/pending.c b/src/analysis/scan/matches/pending.c
index 03cf3f2..9ed4de3 100644
--- a/src/analysis/scan/matches/pending.c
+++ b/src/analysis/scan/matches/pending.c
@@ -293,10 +293,6 @@ void add_pending_match(pending_matches_t *matches, phys_t start, phys_t length)
area->ttl = 1;
- printf("[i] new match: from %llx to %llx\n",
- (unsigned long long)area->start,
- (unsigned long long)area->end);
-
}
@@ -368,11 +364,6 @@ void extend_pending_match_ending(pending_matches_t *matches, size_t target, phys
{
assert(end <= matches->content_end);
- printf(" -- extend same (%llu - %llu) -> new end: %llu\n",
- (unsigned long long)area->start,
- (unsigned long long)area->end,
- (unsigned long long)end);
-
area->end = end;
area->ttl = 1;
@@ -382,11 +373,6 @@ void extend_pending_match_ending(pending_matches_t *matches, size_t target, phys
{
assert(area->ttl == 1);
- printf(" -- extend (%llu - %llu) -> new end: %llu\n",
- (unsigned long long)area->start,
- (unsigned long long)area->end,
- (unsigned long long)end);
-
add_pending_match(matches, area->start, end - area->start);
}