X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;ds=sidebyside;f=cinelerra-5.1%2Fcinelerra%2Fsighandler.C;h=f9a56432fc1ee7a35077abca057058e234adafb2;hb=3ceaf97d3b161445161eb5d48f3e8d5e9c34e3f8;hp=93d8da20aa8b39a8aa6bc9dca1119e4e9ceb0576;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/sighandler.C b/cinelerra-5.1/cinelerra/sighandler.C index 93d8da20..f9a56432 100644 --- a/cinelerra-5.1/cinelerra/sighandler.C +++ b/cinelerra-5.1/cinelerra/sighandler.C @@ -43,14 +43,8 @@ void SigHandler::signal_handler(int signum) void SigHandler::push_file(File *file) { // Check for duplicate - for(int i = 0; i < files.total; i++) - { - if(files.values[i] == file) - { - printf("SigHandler::push_file: file %s already on table.\n", - file->asset->path); - return; - } + for(int i = 0; i < files.total; i++) { + if(files.values[i] == file) return; } // Append file @@ -67,17 +61,5 @@ void SigHandler::pull_file(File *file) return; } } - printf("SigHandler::pull_file: file %s not on table.\n", - file->asset->path); } - - - - - - - - - -