diff options
Diffstat (limited to 'ksmserver/legacy.cpp')
-rw-r--r-- | ksmserver/legacy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksmserver/legacy.cpp b/ksmserver/legacy.cpp index 1a1cea765..186fdcf64 100644 --- a/ksmserver/legacy.cpp +++ b/ksmserver/legacy.cpp @@ -356,7 +356,7 @@ TQString KSMServer::windowWmClientMachine(WId w) hostnamebuf[sizeof(hostnamebuf)-1] = 0; if (result == hostnamebuf) result = "localhost"; - if(char *dot = (char*)strchr(hostnamebuf, '.')) { + if(char *dot = strchr(hostnamebuf, '.')) { *dot = '\0'; if(result == hostnamebuf) result = "localhost"; |