summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-02 18:08:37 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-02 18:08:37 -0600
commitb2f408002ea3d19c1e51664fe0511fc9a8119bec (patch)
treec5d5ca83bfb0e639e22d100b46cd7fb6f0feed1a
parent3dfc6fd192be0573af8815b9ad02fbf78006a969 (diff)
downloadtdelibs-b2f40800.tar.gz
tdelibs-b2f40800.zip
Fix when kdetcompmgr printf message is displayed.
-rw-r--r--tdecore/kdetcompmgr.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tdecore/kdetcompmgr.cpp b/tdecore/kdetcompmgr.cpp
index 964cd49be..694d60b0a 100644
--- a/tdecore/kdetcompmgr.cpp
+++ b/tdecore/kdetcompmgr.cpp
@@ -70,14 +70,13 @@ int main(int argc, char **argv)
strcat(filename, home);
strcat(filename, configfile);
- printf("[kdetcompmgr] reading '%s' as kompmgr pidfile\n\n", filename);
-
// Now that we did all that by way of introduction...read the file!
FILE *pFile;
char buffer[255];
pFile = fopen(filename, "r");
int kompmgrpid = 0;
if (pFile) {
+ printf("[kdetcompmgr] Using '%s' as kompmgr pidfile\n", filename);
// obtain file size
fseek (pFile , 0 , SEEK_END);
unsigned long lSize = ftell (pFile);