summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2023-03-22 11:05:18 +0200
committerPanu Matilainen <pmatilai@redhat.com>2023-03-22 11:17:45 +0200
commit4a2f13bf6b9a48e7c16d8effd4d9a1f679d3642f (patch)
tree2a2020e44c8e39eb799e43dd3e8bd5a02b713098
parent93256ee95d7cead4b9ada75a6d1c3cd23b97c857 (diff)
downloadrpm-4a2f13bf6b9a48e7c16d8effd4d9a1f679d3642f.tar.gz
Kick out rpmds debugging remnants
I'll add the printf() if I need it...
-rw-r--r--lib/rpmds.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c
index 6cdc2351e..3290d2282 100644
--- a/lib/rpmds.c
+++ b/lib/rpmds.c
@@ -13,8 +13,6 @@
#include "debug.h"
-int _rpmds_debug = 0;
-
/**
* A package dependency set.
*/
@@ -700,11 +698,6 @@ int rpmdsNext(rpmds ds)
} else
ds->i = -1;
-if (_rpmds_debug < 0 && i != -1)
-fprintf(stderr, "*** ds %p\t%s[%d]: %s\n", ds, (ds->Type ? ds->Type : "?Type?"), i, (ds->DNEVR ? ds->DNEVR : "?DNEVR?"));
-
- }
-
return i;
}