diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-18 16:01:06 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-18 16:01:06 -0600 |
commit | 586eb3bc1de4024ab23f80e10dcf6b2a7c9a6082 (patch) | |
tree | 186c8e994b7af8927faa59ba7287437077881439 | |
parent | fd4ce957a9bc37a61fbf849813dad956e6ef869d (diff) | |
download | tdebase-586eb3bc1de4024ab23f80e10dcf6b2a7c9a6082.tar.gz tdebase-586eb3bc1de4024ab23f80e10dcf6b2a7c9a6082.zip |
Remove extraneous PID debugging messages from compton-tde
This resolves Bug 645
-rw-r--r-- | twin/compton-tde/compton.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/twin/compton-tde/compton.c b/twin/compton-tde/compton.c index dedbfdd09..e14db6ca0 100644 --- a/twin/compton-tde/compton.c +++ b/twin/compton-tde/compton.c @@ -124,8 +124,6 @@ void write_pid_file(pid_t pid) strcat(filename, home); strcat(filename, configfile); - printf("writing '%s' as pidfile\n\n", filename); - /* now that we did all that by way of introduction...write the file! */ FILE *pFile; char buffer[255]; @@ -163,8 +161,6 @@ void delete_pid_file() strcat(filename, home); strcat(filename, configfile); - printf("deleting '%s' as pidfile\n\n", filename); - /* now that we did all that by way of introduction...delete the file! */ unlink(filename); |