From d54ab5595153b3dc57560077ff3551ffd4406b30 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 15 Aug 2011 21:36:27 +0000 Subject: Fix a number of issues in kdebase caused by C style casts This includes Bug #492 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1247425 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kwin/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kwin/utils.cpp') diff --git a/kwin/utils.cpp b/kwin/utils.cpp index 8e43901f3..de422f40e 100644 --- a/kwin/utils.cpp +++ b/kwin/utils.cpp @@ -317,7 +317,7 @@ bool isLocalMachine( const TQCString& host ) hostnamebuf[sizeof(hostnamebuf)-1] = 0; if (host == hostnamebuf) return true; - if( char *dot = (char*)strchr(hostnamebuf, '.')) + if( char *dot = strchr(hostnamebuf, '.')) { *dot = '\0'; if( host == hostnamebuf ) -- cgit v1.2.1