From c597ce70793ed019471fa300443c281aca9d8b40 Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Sun, 14 May 2006 18:51:45 +0000 Subject: [PATCH] Remove printfs --- recman.cc | 4 ---- vrecordinglist.cc | 2 -- 2 files changed, 6 deletions(-) diff --git a/recman.cc b/recman.cc index 0c66350..e8c9d15 100644 --- a/recman.cc +++ b/recman.cc @@ -51,8 +51,6 @@ void RecMan::addEntry(ULONG startTime, char* name, char* fileName) // And now for the directory structure & prog name - printf("%lu %s %s\n", startTime, name, fileName); - char* c; char* d; stack dirNamesStack; @@ -68,7 +66,6 @@ void RecMan::addEntry(ULONG startTime, char* name, char* fileName) if (!gotProgName) { - printf("Got prog name '%s'\n", d); rec->setProgName(d); // will copy from d to end of string *c = '\0'; gotProgName = true; @@ -99,7 +96,6 @@ void RecMan::addEntry(ULONG startTime, char* name, char* fileName) } else { - printf("making new dir '%s'\n", oneDirName); getDir = new Directory(oneDirName); // Make a new directory getDir->parent = targetDirectory; targetDirectory->dirList.push_back(getDir); // Put the new directory in the tree diff --git a/vrecordinglist.cc b/vrecordinglist.cc index d9ae555..ed1c043 100644 --- a/vrecordinglist.cc +++ b/vrecordinglist.cc @@ -266,8 +266,6 @@ int VRecordingList::doResume() { Recording* toResume = getCurrentOptionRecording(); - printf("%s\n", toResume->getFileName()); - if (toResume) { ULLONG position = VDR::getInstance()->getResumePoint(toResume->getFileName()); -- 2.39.2