diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-03-22 13:25:57 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-03-22 13:25:57 +0200 |
commit | d71964bda572f5fd141ddc35b506d4086e631264 (patch) | |
tree | 928cd891832aa4c170e932ba5ffdd94e8226c2c1 /lib/fsm.c | |
parent | b02d4f20a0bf2b1cf96ace4dbcbfddd4a54f0a08 (diff) | |
download | rpm-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |