diff options
Diffstat (limited to 'kdecore')
-rw-r--r-- | kdecore/kdetcompmgr.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kdecore/kdetcompmgr.cpp b/kdecore/kdetcompmgr.cpp index 43a326ac1..ee83a22f3 100644 --- a/kdecore/kdetcompmgr.cpp +++ b/kdecore/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); |