summaryrefslogtreecommitdiff
path: root/lib/fsm.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2010-03-22 13:25:57 +0200
committerPanu Matilainen <pmatilai@redhat.com>2010-03-22 13:25:57 +0200
commitd71964bda572f5fd141ddc35b506d4086e631264 (patch)
tree928cd891832aa4c170e932ba5ffdd94e8226c2c1 /lib/fsm.c
parentb02d4f20a0bf2b1cf96ace4dbcbfddd4a54f0a08 (diff)
downloadrpm-d71964bda572f5fd141ddc35b506d4086e631264.tar.gz
rpm-d71964bda572f5fd141ddc35b506d4086e631264.tar.bz2
rpm-d71964bda572f5fd141ddc35b506d4086e631264.zip
Lose the useless rpmio refcounting debug junk
- the rpmio API always had this goo, should've gotten rid of it back in commit dbdbe8010cd944f026a5a4e5d071eb31d29d81c4 but .. oh well
Diffstat (limited to 'lib/fsm.c')
-rw-r--r--lib/fsm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fsm.c b/lib/fsm.c
index c6264f360..3b9a4c44d 100644
--- a/lib/fsm.c
+++ b/lib/fsm.c
@@ -519,7 +519,7 @@ int fsmSetup(FSM_t fsm, fileStage goal,
fsm->goal = goal;
if (cfd != NULL) {
- fsm->cfd = fdLink(cfd, RPMDBG_M("persist (fsm)"));
+ fsm->cfd = fdLink(cfd);
}
fsm->cpioPos = 0;
fsm->iter = mapInitIterator(ts, te, fi);
@@ -568,7 +568,7 @@ int fsmTeardown(FSM_t fsm)
fsm->iter = mapFreeIterator(fsm->iter);
if (fsm->cfd != NULL) {
- fsm->cfd = fdFree(fsm->cfd, RPMDBG_M("persist (fsm)"));
+ fsm->cfd = fdFree(fsm->cfd);
fsm->cfd = NULL;
}
fsm->failedFile = NULL;