summaryrefslogtreecommitdiffstats
path: root/tdecore/kdetcompmgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecore/kdetcompmgr.cpp')
-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);